aboutsummaryrefslogtreecommitdiff
path: root/src/egl.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-06-16 20:57:59 +0200
committerdec05eba <dec05eba@protonmail.com>2025-06-16 20:57:59 +0200
commitbc58e382b7182497d1cfc08e1a158d1ecd5ef4cd (patch)
tree77591cd31b7a2dfa93fb1baeea4a25725bb65ff5 /src/egl.c
parent630c5042410996d3ec05ddf2906f1f5d2d424626 (diff)
EGL_OPENGL_ES_BIT->EGL_OPENGL_ES2_BIT
Diffstat (limited to 'src/egl.c')
-rw-r--r--src/egl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl.c b/src/egl.c
index 25a3444..d2d90e8 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -35,7 +35,7 @@ static bool gsr_egl_create_window(gsr_egl *self) {
const int32_t attr[] = {
EGL_BUFFER_SIZE, 24,
- EGL_RENDERABLE_TYPE, EGL_OPENGL_ES_BIT,
+ EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
EGL_NONE, EGL_NONE
};