aboutsummaryrefslogtreecommitdiffstats
path: root/src/win_gl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/win_gl.c')
-rw-r--r--src/win_gl.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/win_gl.c b/src/win_gl.c
index e46ece8..662baef 100644
--- a/src/win_gl.c
+++ b/src/win_gl.c
@@ -310,6 +310,18 @@ puglGetProcAddress(const char* name)
: (PuglGlFunc)GetProcAddress(GetModuleHandle("opengl32.dll"), name);
}
+PuglStatus
+puglEnterContext(PuglView* view)
+{
+ return view->backend->enter(view, NULL);
+}
+
+PuglStatus
+puglLeaveContext(PuglView* view)
+{
+ return view->backend->leave(view, NULL);
+}
+
const PuglBackend*
puglGlBackend(void)
{