gl-renderer: make EGL typedefs similar to EGL/egl.h when building without EGL support

Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
dev
Vasily Khoruzhick 12 years ago committed by Kristian Høgsberg
parent a178f70965
commit 26def5ca8e
  1. 8
      src/gl-renderer.h

@ -53,10 +53,10 @@ gl_renderer_print_egl_error_state(void);
#else #else
typedef int EGLint; typedef int EGLint;
typedef int EGLDisplay; typedef void *EGLDisplay;
typedef int EGLSurface; typedef void *EGLSurface;
typedef long int EGLNativeDisplayType; typedef intptr_t EGLNativeDisplayType;
typedef long int EGLNativeWindowType; typedef intptr_t EGLNativeWindowType;
static const EGLint gl_renderer_opaque_attribs[]; static const EGLint gl_renderer_opaque_attribs[];
static const EGLint gl_renderer_alpha_attribs[]; static const EGLint gl_renderer_alpha_attribs[];

Loading…
Cancel
Save