diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-11-01 19:55:20 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-11-01 19:55:20 +0100 |
commit | d2ccfd9b565f03956ff60c0c59f0cfdc50028cdd (patch) | |
tree | fd3e9a2aaeabaf43c408e6bc6711ba20228aa022 | |
parent | 8e99189040dca3c0d34e84d5492763f9408d60c2 (diff) |
Dont use es2, might fix some launch for some users
-rw-r--r-- | src/egl.c | 4 | ||||
-rw-r--r-- | src/egl.h | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -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) { @@ -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 |