mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-01 20:51:58 -07:00
egl: require gles 3.0 only
No clue what could break, hopefully nothing ref #6973
This commit is contained in:
@@ -134,7 +134,7 @@ void CHyprOpenGLImpl::initEGL(bool gbm) {
|
|||||||
attrs.push_back(EGL_CONTEXT_MAJOR_VERSION);
|
attrs.push_back(EGL_CONTEXT_MAJOR_VERSION);
|
||||||
attrs.push_back(3);
|
attrs.push_back(3);
|
||||||
attrs.push_back(EGL_CONTEXT_MINOR_VERSION);
|
attrs.push_back(EGL_CONTEXT_MINOR_VERSION);
|
||||||
attrs.push_back(2);
|
attrs.push_back(0);
|
||||||
#else
|
#else
|
||||||
attrs.push_back(EGL_CONTEXT_CLIENT_VERSION);
|
attrs.push_back(EGL_CONTEXT_CLIENT_VERSION);
|
||||||
attrs.push_back(2);
|
attrs.push_back(2);
|
||||||
|
Reference in New Issue
Block a user