aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_stub.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-05 15:01:14 +0200
committerDavid Robillard <d@drobilla.net>2020-07-05 18:47:39 +0200
commit98f8d255a8aeece754dcda389aafb75572e8edb8 (patch)
treee3a2022528949dca70a56c8a50132b8e88f5f794 /pugl/pugl_stub.h
parent90abfef17294c1b382f43007d984b93c200efa9d (diff)
downloadpugl-98f8d255a8aeece754dcda389aafb75572e8edb8.tar.gz
pugl-98f8d255a8aeece754dcda389aafb75572e8edb8.tar.bz2
pugl-98f8d255a8aeece754dcda389aafb75572e8edb8.zip
Move stub backend function implementations to a detail header
Diffstat (limited to 'pugl/pugl_stub.h')
-rw-r--r--pugl/pugl_stub.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/pugl/pugl_stub.h b/pugl/pugl_stub.h
index ed3e58a..ef48000 100644
--- a/pugl/pugl_stub.h
+++ b/pugl/pugl_stub.h
@@ -51,50 +51,6 @@ PUGL_API
const PuglBackend*
puglStubBackend(void);
-static inline PuglStatus
-puglStubConfigure(PuglView* view)
-{
- (void)view;
- return PUGL_SUCCESS;
-}
-
-static inline PuglStatus
-puglStubCreate(PuglView* view)
-{
- (void)view;
- return PUGL_SUCCESS;
-}
-
-static inline PuglStatus
-puglStubDestroy(PuglView* view)
-{
- (void)view;
- return PUGL_SUCCESS;
-}
-
-static inline PuglStatus
-puglStubEnter(PuglView* view, const PuglEventExpose* expose)
-{
- (void)view;
- (void)expose;
- return PUGL_SUCCESS;
-}
-
-static inline PuglStatus
-puglStubLeave(PuglView* view, const PuglEventExpose* expose)
-{
- (void)view;
- (void)expose;
- return PUGL_SUCCESS;
-}
-
-static inline void*
-puglStubGetContext(PuglView* view)
-{
- (void)view;
- return NULL;
-}
-
/**
@}
*/