aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-11-01 19:55:20 +0100
committerdec05eba <dec05eba@protonmail.com>2023-11-01 19:55:20 +0100
commitd2ccfd9b565f03956ff60c0c59f0cfdc50028cdd (patch)
treefd3e9a2aaeabaf43c408e6bc6711ba20228aa022
parent8e99189040dca3c0d34e84d5492763f9408d60c2 (diff)
Dont use es2, might fix some launch for some users
-rw-r--r--src/egl.c4
-rw-r--r--src/egl.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/egl.c b/src/egl.c
index f9176e6..0b9affd 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -129,7 +129,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
const int32_t attr[] = {
EGL_BUFFER_SIZE, 24,
- EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
+ EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
EGL_NONE
};
@@ -167,7 +167,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
}
}
- self->eglBindAPI(EGL_OPENGL_ES2_BIT);
+ self->eglBindAPI(EGL_OPENGL_API);
self->egl_display = self->eglGetDisplay(self->wayland.dpy ? (EGLNativeDisplayType)self->wayland.dpy : (EGLNativeDisplayType)self->x11.dpy);
if(!self->egl_display) {
diff --git a/src/egl.h b/src/egl.h
index 4eb4f20..5c44760 100644
--- a/src/egl.h
+++ b/src/egl.h
@@ -39,7 +39,8 @@ typedef void (*__eglMustCastToProperFunctionPointerType)(void);
#define EGL_BUFFER_SIZE 0x3020
#define EGL_RENDERABLE_TYPE 0x3040
-#define EGL_OPENGL_ES2_BIT 0x0004
+#define EGL_OPENGL_BIT 0x0008
+#define EGL_OPENGL_API 0x30A2
#define EGL_NONE 0x3038
#define EGL_CONTEXT_CLIENT_VERSION 0x3098