aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_x11.c
diff options
context:
space:
mode:
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r--pugl/pugl_x11.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c
index e249ea6..d9620e1 100644
--- a/pugl/pugl_x11.c
+++ b/pugl/pugl_x11.c
@@ -67,18 +67,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);
-}
-
int
puglCreateWindow(PuglView* view, const char* title)
{
@@ -605,9 +593,3 @@ puglGetNativeWindow(PuglView* view)
{
return (PuglNativeWindow)view->impl->win;
}
-
-void*
-puglGetContext(PuglView* view)
-{
- return view->backend->getContext(view);
-}