aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/mac_gl.m
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-27 11:20:47 +0100
committerDavid Robillard <d@drobilla.net>2019-11-03 21:03:18 +0100
commit14c7cb54a913be5a505148068582d9c56e3d1681 (patch)
treeb23af8d477bb623ae743492367e8ebeb0a43e699 /pugl/detail/mac_gl.m
parent84754fdb2ff35779378e032ec2f195a22d66fe30 (diff)
downloadpugl-14c7cb54a913be5a505148068582d9c56e3d1681.tar.gz
pugl-14c7cb54a913be5a505148068582d9c56e3d1681.tar.bz2
pugl-14c7cb54a913be5a505148068582d9c56e3d1681.zip
Add stub implementations of backend functions
Towards having actual trivial backends, but in general allows backends to not declare functions they don't care about which is nice and already a net reduction of actual code.
Diffstat (limited to 'pugl/detail/mac_gl.m')
-rw-r--r--pugl/detail/mac_gl.m17
1 files changed, 3 insertions, 14 deletions
diff --git a/pugl/detail/mac_gl.m b/pugl/detail/mac_gl.m
index b84f799..6e3c1c6 100644
--- a/pugl/detail/mac_gl.m
+++ b/pugl/detail/mac_gl.m
@@ -21,6 +21,7 @@
#include "pugl/detail/implementation.h"
#include "pugl/detail/mac.h"
#include "pugl/pugl_gl_backend.h"
+#include "pugl/pugl_stub_backend.h"
#ifndef __MAC_10_10
#define NSOpenGLProfileVersion4_1Core NSOpenGLProfileVersion3_2Core
@@ -94,12 +95,6 @@ typedef NSUInteger NSWindowStyleMask;
@end
static PuglStatus
-puglMacGlConfigure(PuglView* PUGL_UNUSED(view))
-{
- return PUGL_SUCCESS;
-}
-
-static PuglStatus
puglMacGlCreate(PuglView* view)
{
PuglInternals* impl = view->impl;
@@ -164,22 +159,16 @@ puglMacGlResize(PuglView* view, int PUGL_UNUSED(width), int PUGL_UNUSED(height))
return PUGL_SUCCESS;
}
-static void*
-puglMacGlGetContext(PuglView* PUGL_UNUSED(view))
-{
- return NULL;
-}
-
const PuglBackend* puglGlBackend(void)
{
static const PuglBackend backend = {
- puglMacGlConfigure,
+ puglStubConfigure,
puglMacGlCreate,
puglMacGlDestroy,
puglMacGlEnter,
puglMacGlLeave,
puglMacGlResize,
- puglMacGlGetContext
+ puglStubGetContext
};
return &backend;