We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If possible, pass GLFW args (like GLFW_TRANSPARENT_FRAMEBUFFER, etc) on .init params
eg.: cpx.init(100,100,"name", GLFW_FLOATING | GLFW_HOVERED)
cpx.init(100,100,"name", GLFW_FLOATING | GLFW_HOVERED)
The text was updated successfully, but these errors were encountered:
Just added this feature. Now you can do:
ctx.init(600, 600, "Hello", decorated=False)
The whole list of possible arguments:
bool resizable, bool visible, bool decorated, bool focused, bool auto_iconify, bool floating, bool maximized, bool transperent, bool focus_on_show, bool scale_to_monitor, bool full_screen
I did not upload this to pypi yet, but I will do it soonish as well as I'll update the documentation
Sorry, something went wrong.
No branches or pull requests
If possible, pass GLFW args (like GLFW_TRANSPARENT_FRAMEBUFFER, etc) on .init params
eg.:
cpx.init(100,100,"name", GLFW_FLOATING | GLFW_HOVERED)
The text was updated successfully, but these errors were encountered: