aboutsummaryrefslogtreecommitdiff
path: root/src/egl.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-08-15 08:21:54 +0200
committerdec05eba <dec05eba@protonmail.com>2024-08-15 08:21:54 +0200
commit0b9d232ce8881ccf991817862e2e5b3a8bc0a73d (patch)
treee4828d0459ba4bc77d3ba44f03211411ef991858 /src/egl.c
parent8e3014aa97d30ba3b24d5409be00db6ecd76f4b3 (diff)
Fix crash, use opengl es instead of opengl desktop
Diffstat (limited to 'src/egl.c')
-rw-r--r--src/egl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl.c b/src/egl.c
index 73645d6..2c68278 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -187,7 +187,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_BIT,
+ EGL_RENDERABLE_TYPE, EGL_OPENGL_ES_BIT,
EGL_NONE, EGL_NONE
};
@@ -226,7 +226,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
}
}
- self->eglBindAPI(EGL_OPENGL_API);
+ self->eglBindAPI(EGL_OPENGL_ES_API);
self->egl_display = self->eglGetDisplay(self->wayland.dpy ? (EGLNativeDisplayType)self->wayland.dpy : (EGLNativeDisplayType)self->x11.dpy);
if(!self->egl_display) {