aboutsummaryrefslogtreecommitdiff
path: root/src/egl.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-06-09 22:11:16 +0200
committerdec05eba <dec05eba@protonmail.com>2025-06-09 22:11:16 +0200
commit7f00ce22e7e86904e09f900422dfa591d045f447 (patch)
tree7ba28db730298c462b3a028348b4960977e751c2 /src/egl.c
parent3ba1dbda98fcf221eb92d241b753ccdef9eb2a08 (diff)
Revert "Fix screen and portal capture not working on some intel gpus"
This reverts commit 3ba1dbda98fcf221eb92d241b753ccdef9eb2a08.
Diffstat (limited to 'src/egl.c')
-rw-r--r--src/egl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/egl.c b/src/egl.c
index 350b31d..6661580 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -33,9 +33,10 @@ static bool gsr_egl_create_window(gsr_egl *self) {
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
};
@@ -44,7 +45,8 @@ static bool gsr_egl_create_window(gsr_egl *self) {
EGL_NONE, EGL_NONE
};
- 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((EGLNativeDisplayType)gsr_window_get_display(self->window));
if(!self->egl_display) {