-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unsound code related to subsystem reference counting #107
Comments
A possible solution is removing https://github.com/vhspace/sdl3-rs/blob/master/src/sdl3/sdl.rs#L260-L272. Does this method add any value? Sdl contexts can be cloned already if needed. |
I don't know if it's used at all, maybe! |
It does not seem to be used in the crate itself, but it is public API, so is it okay to remove it in the next breaking change? |
Yeah I'm not calling anything super stable yet |
Originally posted by @antonilol in #102 (comment)
Instances of the Sdl struct should not be sent between threads (it is
!Send
)The text was updated successfully, but these errors were encountered: