aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/common.c b/src/common.c
index dc01da4..9ea3594 100644
--- a/src/common.c
+++ b/src/common.c
@@ -267,31 +267,3 @@ puglGetContext(PuglView* view)
{
return view->backend->getContext(view);
}
-
-#ifndef PUGL_DISABLE_DEPRECATED
-
-PuglStatus
-puglPollEvents(PuglWorld* world, double timeout)
-{
- return puglUpdate(world, timeout);
-}
-
-PuglStatus
-puglDispatchEvents(PuglWorld* world)
-{
- return puglUpdate(world, 0.0);
-}
-
-PuglStatus
-puglShowWindow(PuglView* view)
-{
- return puglShow(view);
-}
-
-PuglStatus
-puglHideWindow(PuglView* view)
-{
- return puglHide(view);
-}
-
-#endif