diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-08-07 08:46:54 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-08-07 08:46:54 +0200 |
commit | 2399d692faab887d598f396324c81648866c16c6 (patch) | |
tree | 5b37873ca3380a89149ff0d08122f674a4c9bec6 /src/window | |
parent | 81050e426bbd7e5cd53820ebd3c2a4a42cc18c6f (diff) |
Add mgl_window_get_egl_display
Diffstat (limited to 'src/window')
-rw-r--r-- | src/window/window.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/window/window.c b/src/window/window.c index 701fbb3..03bb45b 100644 --- a/src/window/window.c +++ b/src/window/window.c @@ -2109,3 +2109,11 @@ void mgl_window_flush(mgl_window *self) { mgl_context *context = mgl_get_context(); XFlush(context->connection); } + +void* mgl_window_get_egl_display(mgl_window *self) { + x11_context *x11_context = self->context; + if(x11_context->render_api == MGL_RENDER_API_EGL) + return x11_context->egl.egl_display; + else + return NULL; +} |