diff options
-rw-r--r-- | pugl/pugl_x11_gl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pugl/pugl_x11_gl.c b/pugl/pugl_x11_gl.c index 0ada53f..0102f4c 100644 --- a/pugl/pugl_x11_gl.c +++ b/pugl/pugl_x11_gl.c @@ -176,12 +176,16 @@ puglX11GlLeave(PuglView* view, bool flush) static int puglX11GlResize(PuglView* view, int width, int height) { + (void)view; + (void)width; + (void)height; return 0; } static void* puglX11GlGetHandle(PuglView* view) { + (void)view; return NULL; } |