gl: fix fallback definition of EGL_DEFAULT_DISPLAY
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>
Wed, 4 Dec 2013 13:34:45 +0000 (15:34 +0200)
committerKristian Høgsberg <krh@bitplanet.net>
Wed, 4 Dec 2013 19:37:57 +0000 (11:37 -0800)
Compiling fbdev backend on RaspberryPi caused the following warning:

compositor-fbdev.c: In function 'fbdev_compositor_create':
compositor-fbdev.c:929:6: warning: passing argument 2 of
'gl_renderer->create' makes integer from pointer without a cast [enabled
by default]
compositor-fbdev.c:929:6: note: expected 'EGLNativeDisplayType' but
argument is of type 'void *'

Fix the definition of EGL_DEFAULT_DISPLAY to match the definition in
EGL/egl.h (of Mesa).

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
src/gl-renderer.h

index 63b371c..dcdf69d 100644 (file)
@@ -35,7 +35,7 @@ typedef void *EGLDisplay;
 typedef void *EGLSurface;
 typedef intptr_t EGLNativeDisplayType;
 typedef intptr_t EGLNativeWindowType;
-#define EGL_DEFAULT_DISPLAY NULL
+#define EGL_DEFAULT_DISPLAY ((EGLNativeDisplayType)0)
 
 #endif