diff options
Diffstat (limited to 'pugl/detail/x11.c')
-rw-r--r-- | pugl/detail/x11.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c index e6444c8..a41de3e 100644 --- a/pugl/detail/x11.c +++ b/pugl/detail/x11.c @@ -26,10 +26,8 @@ #include "pugl/detail/x11.h" #include "pugl/detail/implementation.h" -#include "pugl/detail/stub.h" #include "pugl/detail/types.h" #include "pugl/pugl.h" -#include "pugl/pugl_stub.h" #include <X11/X.h> #include <X11/Xatom.h> @@ -1343,18 +1341,3 @@ puglSetCursor(PuglView* view, PuglCursor cursor) return PUGL_FAILURE; #endif } - -const PuglBackend* -puglStubBackend(void) -{ - static const PuglBackend backend = { - puglX11StubConfigure, - puglStubCreate, - puglStubDestroy, - puglStubEnter, - puglStubLeave, - puglStubGetContext, - }; - - return &backend; -} |