diff options
Diffstat (limited to 'pugl/pugl_win.c')
-rw-r--r-- | pugl/pugl_win.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/pugl/pugl_win.c b/pugl/pugl_win.c index d3bea51..799850e 100644 --- a/pugl/pugl_win.c +++ b/pugl/pugl_win.c @@ -82,18 +82,6 @@ puglInitInternals(void) return impl; } -void -puglEnterContext(PuglView* view, bool drawing) -{ - view->backend->enter(view, drawing); -} - -void -puglLeaveContext(PuglView* view, bool drawing) -{ - view->backend->leave(view, drawing); -} - int puglCreateWindow(PuglView* view, const char* title) { @@ -705,9 +693,3 @@ puglGetNativeWindow(PuglView* view) { return (PuglNativeWindow)view->impl->hwnd; } - -void* -puglGetContext(PuglView* view) -{ - return view->backend->getContext(view); -} |