aboutsummaryrefslogtreecommitdiff
path: root/src/gl.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-08-04 21:16:55 +0200
committerdec05eba <dec05eba@protonmail.com>2024-08-04 21:16:55 +0200
commit90739659800c4bf893882098d70b575c26958883 (patch)
treed36299593d9900217d55f6926bf6459c954ba6e3 /src/gl.c
parent1636127a6edfbf5399d1706c1a6c58f87eeb5c79 (diff)
egl: fix transparent window
Diffstat (limited to 'src/gl.c')
-rw-r--r--src/gl.c2
1 files changed, 1 insertions, 1 deletions
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" },