-
Notifications
You must be signed in to change notification settings - Fork 26
Use Egl instead of Glx #128
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
Conversation
@jbmouret have a try on this one in your dockers! In essence, I replaced all glx with egl (see the Now we can have windowless apps without dummy (or real) xservers! And in theory, GLFW should be better with egl! |
I've run The library compiles but not the examples.
|
This smells like a bad installation procedure... Maybe two magnums installed? Or some error that was ignored? |
Yes, I will try again by removing all the current magnum... |
So, it did compile in our docker. Should I try on mac too? |
For Mac, this shouldn't change anything. There's no egl in Mac. Only Cgl which was the one using already. Thanks for testing..! |
This PR replaces
WindowlessGlxAppilcation
with the more powerfulWindowlessEglApplication
for Linux. Unfortunately, we are stuck withWindowlessCglApplication
for Mac.We also fix a small issue with OpenGL/GLFW3 detection..