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
Steps to reproduce:
window.rs
.with_gl_robustness(Robustness::TryRobustLoseContextOnReset)
platform::linux::x11::GlxOrEgl
The window building returns Err(OpenGlVersionNotSupported), because egl.CreateContext generated a BAD_ATTRIBUTE EGL error.
Err(OpenGlVersionNotSupported)
egl.CreateContext
BAD_ATTRIBUTE
This has been reproduced one 3 computers, 2 using mesa and 1 using the nvidia proprietary drivers.
The text was updated successfully, but these errors were encountered:
Fixed in #1435. If not reopen.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
window.rs
by adding.with_gl_robustness(Robustness::TryRobustLoseContextOnReset)
to the window builderplatform::linux::x11::GlxOrEgl
to ignore GLX for example)The window building returns
Err(OpenGlVersionNotSupported)
, becauseegl.CreateContext
generated aBAD_ATTRIBUTE
EGL error.This has been reproduced one 3 computers, 2 using mesa and 1 using the nvidia proprietary drivers.
The text was updated successfully, but these errors were encountered: