egl: require gles 3.0 only

No clue what could break, hopefully nothing

ref #6973
This commit is contained in:
Vaxry 2024-07-29 14:23:19 +02:00
parent 33e513d489
commit 87699575e1
1 changed files with 1 additions and 1 deletions

View File

@ -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);