diff options
Diffstat (limited to 'include/EGL')
-rw-r--r-- | include/EGL/eglplatform.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h index 8a78a9eaddd..b0541d52aed 100644 --- a/include/EGL/eglplatform.h +++ b/include/EGL/eglplatform.h @@ -130,11 +130,13 @@ typedef Window EGLNativeWindowType; #endif /* MESA_EGL_NO_X11_HEADERS */ -#elif __HAIKU__ +#elif defined(__HAIKU__) + #include <kernel/image.h> -typedef void *EGLNativeDisplayType; -typedef khronos_uintptr_t EGLNativePixmapType; -typedef khronos_uintptr_t EGLNativeWindowType; + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; #else #error "Platform not recognized" |