diff options
Diffstat (limited to 'pugl/detail/implementation.c')
-rw-r--r-- | pugl/detail/implementation.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pugl/detail/implementation.c b/pugl/detail/implementation.c index 8deb50a..6433faa 100644 --- a/pugl/detail/implementation.c +++ b/pugl/detail/implementation.c @@ -243,6 +243,8 @@ puglGetContext(PuglView* view) return view->backend->getContext(view); } +#ifndef PUGL_DISABLE_DEPRECATED + PuglStatus puglEnterContext(PuglView* view, bool drawing) { @@ -265,6 +267,8 @@ puglLeaveContext(PuglView* view, bool drawing) return PUGL_SUCCESS; } +#endif + PuglStatus puglSetEventFunc(PuglView* view, PuglEventFunc eventFunc) { |