mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-10 05:05:58 +01:00
egl: require gles 3.0 only
No clue what could break, hopefully nothing ref #6973
This commit is contained in:
parent
33e513d489
commit
87699575e1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue