diff options
author | Sven Gothel <[email protected]> | 2012-04-09 03:55:57 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-04-09 03:55:57 +0200 |
commit | 1e61021a062b1403f7eed948ac9d2ea0c04ea951 (patch) | |
tree | 741a022a7ce45996c1394aa27648ffc776fbf1c1 /make/stub_includes/egl/EGL/eglext.h | |
parent | 96ae8202621dfa1f7ae4995e7749d1b0d9918b54 (diff) |
Fix EGL/ES types GLeglImageOES, EGLImageKHR & EGLClientBuffer - and functions: eglCreateImageKHR, eglCreatePbufferFromClientBuffer
Unique typedef for: EGLConfig, EGLContext, EGLDisplay, EGLSurface,
EGLNativeDisplayType, EGLNativeWindowType, EGLNativePixmapType,
EGLImageKHR, GLeglImageOES and EGLSyncKHR
allowing to render them individually opaque (long) and keep EGLClientBuffer as NIO buffer.
Diffstat (limited to 'make/stub_includes/egl/EGL/eglext.h')
-rw-r--r-- | make/stub_includes/egl/EGL/eglext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/stub_includes/egl/EGL/eglext.h b/make/stub_includes/egl/EGL/eglext.h index d5310df65..763403609 100644 --- a/make/stub_includes/egl/EGL/eglext.h +++ b/make/stub_includes/egl/EGL/eglext.h @@ -78,7 +78,7 @@ typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display #ifndef EGL_KHR_image #define EGL_KHR_image 1 #define EGL_NATIVE_PIXMAP_KHR 0x30B0 /* eglCreateImageKHR target */ -typedef void *EGLImageKHR; +typedef struct __EGLImageKHR *EGLImageKHR; /* Manual: #define EGL_NO_IMAGE_KHR ((EGLImageKHR)0) */ #ifdef EGL_EGLEXT_PROTOTYPES EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); @@ -124,7 +124,7 @@ typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGL #ifndef EGL_KHR_reusable_sync #define EGL_KHR_reusable_sync 1 -typedef void* EGLSyncKHR; +typedef struct __EGLSyncKHR* EGLSyncKHR; typedef khronos_utime_nanoseconds_t EGLTimeKHR; #define EGL_SYNC_STATUS_KHR 0x30F1 |