diff options
Diffstat (limited to 'pugl/detail/x11.c')
-rw-r--r-- | pugl/detail/x11.c | 6 |
1 files changed, 6 insertions, 0 deletions
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) { |