diff options
author | Vaxry <[email protected]> | 2024-07-29 14:23:19 +0200 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-07-29 14:23:19 +0200 |
commit | 87699575e1663649270e9a271609b5bcd079ce70 (patch) | |
tree | d173455cc27b55e58a38387989a515a387fe38d4 /src/render/OpenGL.cpp | |
parent | 33e513d489faf5998a3831d55aa7ddd796ef3368 (diff) | |
download | Hyprland-87699575e1663649270e9a271609b5bcd079ce70.tar.gz Hyprland-87699575e1663649270e9a271609b5bcd079ce70.zip |
egl: require gles 3.0 only
No clue what could break, hopefully nothing
ref #6973
Diffstat (limited to 'src/render/OpenGL.cpp')
-rw-r--r-- | src/render/OpenGL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index 39f6614e..b2346e0f 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -134,7 +134,7 @@ void CHyprOpenGLImpl::initEGL(bool gbm) { attrs.push_back(EGL_CONTEXT_MAJOR_VERSION); attrs.push_back(3); attrs.push_back(EGL_CONTEXT_MINOR_VERSION); - attrs.push_back(2); + attrs.push_back(0); #else attrs.push_back(EGL_CONTEXT_CLIENT_VERSION); attrs.push_back(2); |