Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: third_party/khronos/EGL/eglext.h

Issue 11973003: Move code around to fix build with system mesa. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_validation.cc ('k') | third_party/khronos/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_validation.cc ('k') | third_party/khronos/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698