aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mgl/window/window.h1
-rw-r--r--src/window/window.c8
2 files changed, 9 insertions, 0 deletions
diff --git a/include/mgl/window/window.h b/include/mgl/window/window.h
index 0d2a079..d922238 100644
--- a/include/mgl/window/window.h
+++ b/include/mgl/window/window.h
@@ -179,5 +179,6 @@ void mgl_window_set_render_blend_func(mgl_window *self);
void mgl_window_flush(mgl_window *self);
void* mgl_window_get_egl_display(mgl_window *self);
+void* mgl_window_get_egl_context(mgl_window *self);
#endif /* MGL_WINDOW_H */
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;
+}