From 4ad0118f359d954f9e5276ca6bf29a51e6dfa559 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 26 Jul 2023 02:31:12 +0200 Subject: High priority egl context if possible, use eglBindAPI(EGL_OPENGL_ES_API) --- src/egl.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/egl.c') diff --git a/src/egl.c b/src/egl.c index 3892cdc..2875f88 100644 --- a/src/egl.c +++ b/src/egl.c @@ -214,12 +214,13 @@ 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_NONE + EGL_NONE, EGL_NONE }; const int32_t ctxattr[] = { EGL_CONTEXT_CLIENT_VERSION, 2, - EGL_NONE + EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG, + EGL_NONE, EGL_NONE }; if(wayland) { @@ -251,7 +252,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) { } } - self->eglBindAPI(EGL_OPENGL_ES2_BIT); + 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) { -- cgit v1.2.3