diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-09-18 10:35:29 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-09-18 10:35:29 +0200 |
commit | e63ecd2e025b22d70f7103851e709844606750c9 (patch) | |
tree | 108527c03d2e7046f4783979eff46438249b2026 /src | |
parent | 70734d224eafd02468a1e89b3fca77d933a6fa4d (diff) |
egl es -> egl
Diffstat (limited to 'src')
-rw-r--r-- | src/egl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |