diff options
author | David Robillard <d@drobilla.net> | 2022-06-06 22:34:08 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-08 22:04:49 -0400 |
commit | 96ca7a5a2ae976c587c676baf87446a55961e507 (patch) | |
tree | 6e9eeb5dc0305cc9cdfd0b69c31473224ae7fc6e /src/common.c | |
parent | 8f505887090d0d6a16a0f3b06638fa297b9a4255 (diff) | |
download | pugl-96ca7a5a2ae976c587c676baf87446a55961e507.tar.gz pugl-96ca7a5a2ae976c587c676baf87446a55961e507.tar.bz2 pugl-96ca7a5a2ae976c587c676baf87446a55961e507.zip |
Consolidate common deprecated API implementation
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 28 |
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 |