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

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

Issue 10822029: Use EXT_robustness where available on GLES2 platforms to detect and respond to resets of the graphi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review feedback. Rebuilt and re-tested. Created 8 years, 4 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_decoder.cc ('k') | ui/gl/generate_bindings.py » ('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-2010 The Khronos Group Inc. 9 ** Copyright (c) 2007-2010 The Khronos Group Inc.
10 ** 10 **
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 321
322 #ifdef EGL_EGLEXT_PROTOTYPES 322 #ifdef EGL_EGLEXT_PROTOTYPES
323 EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV(void); 323 EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV(void);
324 EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV(void); 324 EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV(void);
325 #endif /* EGL_EGLEXT_PROTOTYPES */ 325 #endif /* EGL_EGLEXT_PROTOTYPES */
326 typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) (void); 326 typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) (void);
327 typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC) (void); 327 typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC) (void);
328 #endif 328 #endif
329 #endif 329 #endif
330 330
331 #ifndef EGL_EXT_create_context_robustness
332 #define EGL_EXT_create_context_robustness 1
333 #define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT 0x30BF
334 #define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT 0x3138
335 #define EGL_NO_RESET_NOTIFICATION_EXT 0x31BE
336 #define EGL_LOSE_CONTEXT_ON_RESET_EXT 0x31BF
337 #endif
338
331 #ifdef __cplusplus 339 #ifdef __cplusplus
332 } 340 }
333 #endif 341 #endif
334 342
335 #endif 343 #endif
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | ui/gl/generate_bindings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698