From 90739659800c4bf893882098d70b575c26958883 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 4 Aug 2024 21:16:55 +0200 Subject: egl: fix transparent window --- src/gl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gl.c') diff --git a/src/gl.c b/src/gl.c index 77e867a..6d2c0fe 100644 --- a/src/gl.c +++ b/src/gl.c @@ -134,7 +134,7 @@ static int mgl_gl_load_egl(mgl_gl *self) { { (void**)&self->eglGetDisplay, "eglGetDisplay" }, { (void**)&self->eglInitialize, "eglInitialize" }, { (void**)&self->eglTerminate, "eglTerminate" }, - { (void**)&self->eglChooseConfig, "eglChooseConfig" }, + { (void**)&self->eglGetConfigs, "eglGetConfigs" }, { (void**)&self->eglCreateWindowSurface, "eglCreateWindowSurface" }, { (void**)&self->eglCreateContext, "eglCreateContext" }, { (void**)&self->eglMakeCurrent, "eglMakeCurrent" }, -- cgit v1.2.3