aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-08-15 13:21:42 +0200
committerdec05eba <dec05eba@protonmail.com>2024-08-15 13:21:42 +0200
commitd5e5490164755425fcfe69746f6a79645695c8d6 (patch)
tree5acaceabefc2419e80b6c00dcc1a3702c6594342
parentc1debaa838795c1d628ad9295f2c1b8498ea4f4a (diff)
Fix software encoding option not working
-rw-r--r--src/egl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/egl.c b/src/egl.c
index 2c68278..3dda33d 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -185,9 +185,10 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
EGLConfig ecfg;
int32_t num_config = 0;
+ // TODO: Use EGL_OPENGL_ES_BIT as amd requires that for external texture, but that breaks software encoding
const int32_t attr[] = {
EGL_BUFFER_SIZE, 24,
- EGL_RENDERABLE_TYPE, EGL_OPENGL_ES_BIT,
+ EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
EGL_NONE, EGL_NONE
};
@@ -226,7 +227,8 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
}
}
- self->eglBindAPI(EGL_OPENGL_ES_API);
+ // TODO: Use EGL_OPENGL_ES_API as amd requires that for external texture, but that breaks software encoding
+ 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) {