aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail
diff options
context:
space:
mode:
Diffstat (limited to 'pugl/detail')
-rw-r--r--pugl/detail/mac.m6
-rw-r--r--pugl/detail/win.c6
-rw-r--r--pugl/detail/x11.c6
3 files changed, 18 insertions, 0 deletions
diff --git a/pugl/detail/mac.m b/pugl/detail/mac.m
index e8a5d57..f530c2e 100644
--- a/pugl/detail/mac.m
+++ b/pugl/detail/mac.m
@@ -695,6 +695,12 @@ puglFreeWorldInternals(PuglWorld* world)
free(world->impl);
}
+void*
+puglGetNativeWorld(PuglWorld* world)
+{
+ return NULL;
+}
+
PuglInternals*
puglInitViewInternals(void)
{
diff --git a/pugl/detail/win.c b/pugl/detail/win.c
index e1deaf1..ee7eb01 100644
--- a/pugl/detail/win.c
+++ b/pugl/detail/win.c
@@ -130,6 +130,12 @@ puglInitWorldInternals(void)
return impl;
}
+void*
+puglGetNativeWorld(PuglWorld* PUGL_UNUSED(world))
+{
+ return GetModuleHandle(NULL);
+}
+
PuglInternals*
puglInitViewInternals(void)
{
diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c
index fd47db3..e576b49 100644
--- a/pugl/detail/x11.c
+++ b/pugl/detail/x11.c
@@ -101,6 +101,12 @@ puglInitWorldInternals(void)
return impl;
}
+void*
+puglGetNativeWorld(PuglWorld* world)
+{
+ return world->impl->display;
+}
+
PuglInternals*
puglInitViewInternals(void)
{