aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/render/OpenGL.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp
index fef69f7c..15b3cad8 100644
--- a/src/render/OpenGL.cpp
+++ b/src/render/OpenGL.cpp
@@ -130,12 +130,15 @@ void CHyprOpenGLImpl::initEGL(bool gbm) {
attrs.push_back(EGL_LOSE_CONTEXT_ON_RESET_EXT);
}
+#ifndef GLES2
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(EGL_CONTEXT_OPENGL_DEBUG);
- attrs.push_back(ISDEBUG ? EGL_TRUE : EGL_FALSE);
+#else
+ attrs.push_back(EGL_CONTEXT_CLIENT_VERSION);
+ attrs.push_back(2);
+#endif
attrs.push_back(EGL_NONE);