aboutsummaryrefslogtreecommitdiff
path: root/src/window
diff options
context:
space:
mode:
Diffstat (limited to 'src/window')
-rw-r--r--src/window/window.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/window/window.c b/src/window/window.c
index 1f21e43..6d44dad 100644
--- a/src/window/window.c
+++ b/src/window/window.c
@@ -2117,3 +2117,11 @@ void* mgl_window_get_egl_display(mgl_window *self) {
else
return NULL;
}
+
+void* mgl_window_get_egl_context(mgl_window *self) {
+ x11_context *x11_context = self->context;
+ if(x11_context->render_api == MGL_RENDER_API_EGL)
+ return x11_context->egl.egl_context;
+ else
+ return NULL;
+}