| OLD | NEW |
| 1 #ifndef __eglext_h_ | 1 #ifndef __eglext_h_ |
| 2 #define __eglext_h_ | 2 #define __eglext_h_ |
| 3 | 3 |
| 4 #ifdef __cplusplus | 4 #ifdef __cplusplus |
| 5 extern "C" { | 5 extern "C" { |
| 6 #endif | 6 #endif |
| 7 | 7 |
| 8 /* | 8 /* |
| 9 ** Copyright (c) 2007-2012 The Khronos Group Inc. | 9 ** Copyright (c) 2007-2012 The Khronos Group Inc. |
| 10 ** | 10 ** |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 #endif | 463 #endif |
| 464 | 464 |
| 465 #ifndef EGL_KHR_wait_sync | 465 #ifndef EGL_KHR_wait_sync |
| 466 #define EGL_KHR_wait_sync 1 | 466 #define EGL_KHR_wait_sync 1 |
| 467 #ifdef EGL_EGLEXT_PROTOTYPES | 467 #ifdef EGL_EGLEXT_PROTOTYPES |
| 468 EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint
flags); | 468 EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint
flags); |
| 469 #endif /* EGL_EGLEXT_PROTOTYPES */ | 469 #endif /* EGL_EGLEXT_PROTOTYPES */ |
| 470 typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC)(EGLDisplay dpy, EGLSyncKHR s
ync, EGLint flags); | 470 typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC)(EGLDisplay dpy, EGLSyncKHR s
ync, EGLint flags); |
| 471 #endif | 471 #endif |
| 472 | 472 |
| 473 #if KHRONOS_SUPPORT_INT64 /* EGLSyncControlCHROMIUM requires 64-bit uint suppo
rt */ | |
| 474 #ifndef EGL_CHROMIUM_sync_control | |
| 475 #define EGL_CHROMIUM_sync_control 1 | |
| 476 typedef khronos_uint64_t EGLuint64CHROMIUM; | |
| 477 #ifdef EGL_EGLEXT_PROTOTYPES | |
| 478 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncValuesCHROMIUM(EGLDisplay dpy, EGLSurfac
e surface, EGLuint64CHROMIUM *ust, EGLuint64CHROMIUM *msc, EGLuint64CHROMIUM *sb
c); | |
| 479 #endif /* EGL_EGLEXT_PROTOTYPES */ | |
| 480 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCVALUESCHROMIUMPROC)(EGLDisplay dpy
, EGLSurface surface, EGLuint64CHROMIUM *ust, EGLuint64CHROMIUM *msc, EGLuint64C
HROMIUM *sbc); | |
| 481 #endif | |
| 482 #endif | |
| 483 | |
| 484 #ifdef __cplusplus | 473 #ifdef __cplusplus |
| 485 } | 474 } |
| 486 #endif | 475 #endif |
| 487 | 476 |
| 488 #endif | 477 #endif |
| OLD | NEW |