aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-09-18 10:35:29 +0200
committerdec05eba <dec05eba@protonmail.com>2023-09-18 10:35:29 +0200
commite63ecd2e025b22d70f7103851e709844606750c9 (patch)
tree108527c03d2e7046f4783979eff46438249b2026
parent70734d224eafd02468a1e89b3fca77d933a6fa4d (diff)
egl es -> egl
-rw-r--r--include/egl.h5
-rw-r--r--src/egl.c4
2 files changed, 4 insertions, 5 deletions
diff --git a/include/egl.h b/include/egl.h
index b50eee0..ea71b5a 100644
--- a/include/egl.h
+++ b/include/egl.h
@@ -37,8 +37,8 @@ typedef void (*__eglMustCastToProperFunctionPointerType)(void);
#define EGL_SUCCESS 0x3000
#define EGL_BUFFER_SIZE 0x3020
#define EGL_RENDERABLE_TYPE 0x3040
-#define EGL_OPENGL_ES2_BIT 0x0004
-#define EGL_OPENGL_ES_API 0x30A0
+#define EGL_OPENGL_API 0x30A2
+#define EGL_OPENGL_BIT 0x0008
#define EGL_NONE 0x3038
#define EGL_CONTEXT_CLIENT_VERSION 0x3098
#define EGL_BACK_BUFFER 0x3084
@@ -55,7 +55,6 @@ typedef void (*__eglMustCastToProperFunctionPointerType)(void);
#define EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT 0x3443
#define EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT 0x3444
#define EGL_LINUX_DMA_BUF_EXT 0x3270
-#define EGL_OPENGL_API 0x30A2
#define EGL_RED_SIZE 0x3024
#define EGL_ALPHA_SIZE 0x3021
#define EGL_BLUE_SIZE 0x3022
diff --git a/src/egl.c b/src/egl.c
index 9e1d54d..e1d44e7 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -226,7 +226,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_ES2_BIT,
+ EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
EGL_NONE, EGL_NONE
};
@@ -265,7 +265,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
}
}
- self->eglBindAPI(EGL_OPENGL_ES_API);
+ 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) {