-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
Hangling multiple windows #58
Comments
It should be possible to implement this I think, although everything would be on the main thread. We could add a function to the It wouldn't work for the WebGL backend, so we'd need to add a way of querying support (or, maybe we could make it work using a popup?) |
Is there any news on this? I would really like to use multi window in a program I’m making (a church presentation program, Quantum) |
No news yet, but it's still something I'd like to implement. A workaround in the meantime could be to have multiple copies of the process running, which could communicate via sockets. |
To a user of the library, it looks like the main problem preventing this is that the program exits on closing a window. My idea on how to fix this is that |
Is it possible for
speedy2d
to handle multiple windows ?I know that
winit
can do this but I couldn't find any reference to this in the documentation/source code.I currently can't send the
WindowHandler
through threads (in order that each window has its own thread) because theSend
trait is not implemented by multiple library structs.The text was updated successfully, but these errors were encountered: