diff options
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r-- | pugl/pugl_osx.m | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 9db9d87..30eb84d 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -724,18 +724,6 @@ puglInitInternals(void) return (PuglInternals*)calloc(1, sizeof(PuglInternals)); } -void -puglEnterContext(PuglView* view, bool drawing) -{ - view->backend->enter(view, drawing); -} - -void -puglLeaveContext(PuglView* view, bool drawing) -{ - view->backend->leave(view, drawing); -} - static NSLayoutConstraint* puglConstraint(id item, NSLayoutAttribute attribute, float constant) { @@ -951,12 +939,6 @@ puglGetNativeWindow(PuglView* view) return (PuglNativeWindow)view->impl->glview; } -void* -puglGetContext(PuglView* view) -{ - return view->backend->getContext(view); -} - // Backend static int |