aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-27 00:07:35 +0200
committerDavid Robillard <d@drobilla.net>2019-07-29 01:59:09 +0200
commite23890324d169d03868855a3e265ab4e3cd43745 (patch)
tree1eb247daa237d834e4cc7a113c5e891d49102c2f /pugl/pugl_internal.h
parentc6c91cca30d34b77202612bf365d3f7b686cb5c4 (diff)
downloadpugl-e23890324d169d03868855a3e265ab4e3cd43745.tar.gz
pugl-e23890324d169d03868855a3e265ab4e3cd43745.tar.bz2
pugl-e23890324d169d03868855a3e265ab4e3cd43745.zip
Move trivial backend dispatch functions to common code
Diffstat (limited to 'pugl/pugl_internal.h')
-rw-r--r--pugl/pugl_internal.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/pugl/pugl_internal.h b/pugl/pugl_internal.h
index ac31b65..312329d 100644
--- a/pugl/pugl_internal.h
+++ b/pugl/pugl_internal.h
@@ -197,6 +197,24 @@ puglGetSize(PuglView* view, int* width, int* height)
*height = view->height;
}
+void*
+puglGetContext(PuglView* view)
+{
+ return view->backend->getContext(view);
+}
+
+void
+puglEnterContext(PuglView* view, bool drawing)
+{
+ view->backend->enter(view, drawing);
+}
+
+void
+puglLeaveContext(PuglView* view, bool drawing)
+{
+ view->backend->leave(view, drawing);
+}
+
void
puglIgnoreKeyRepeat(PuglView* view, bool ignore)
{