diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/cgl-macosx.cfg | 1 | ||||
-rw-r--r-- | make/stub_includes/macosx/window-system.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/make/cgl-macosx.cfg b/make/cgl-macosx.cfg index 649fc7e30..5f32db492 100644 --- a/make/cgl-macosx.cfg +++ b/make/cgl-macosx.cfg @@ -18,6 +18,7 @@ CustomCCode extern Bool makeCurrentContext(void* nsContext, void* nsView); CustomCCode extern Bool clearCurrentContext(void* nsContext, void* nsView); CustomCCode extern Bool deleteContext(void* nsContext, void* nsView); CustomCCode extern Bool flushBuffer(void* nsContext, void* nsView); +CustomCCode extern void updateContext(void* nsContext, void* nsView); CustomCCode extern void* updateContextRegister(void* nsContext, void* nsView); CustomCCode extern void updateContextUnregister(void* nsContext, void* nsView, void* updater); diff --git a/make/stub_includes/macosx/window-system.c b/make/stub_includes/macosx/window-system.c index 15506299b..da317e393 100644 --- a/make/stub_includes/macosx/window-system.c +++ b/make/stub_includes/macosx/window-system.c @@ -8,6 +8,7 @@ Bool makeCurrentContext(void* nsContext, void* nsView); Bool clearCurrentContext(void* nsContext, void* nsView); Bool deleteContext(void* nsContext, void* nsView); Bool flushBuffer(void* nsContext, void* nsView); +void updateContext(void* nsContext, void* nsView); void* updateContextRegister(void* nsContext, void* nsView); void updateContextUnregister(void* nsContext, void* nsView, void* updater); |