1'''Autogenerated by xml_generate script, do not edit!'''
2from OpenGL import platform as _p, arrays
3# Code generation uses this
4from OpenGL.raw.GLES2 import _types as _cs
5# End users want this...
6from OpenGL.raw.GLES2._types import *
7from OpenGL.raw.GLES2 import _errors
8from OpenGL.constant import Constant as _C
9
10import ctypes
11_EXTENSION_NAME = 'GLES2_EXT_robustness'
12def _f( function ):
13    return _p.createFunction( function,_p.PLATFORM.GLES2,'GLES2_EXT_robustness',error_checker=_errors._error_checker)
14GL_CONTEXT_ROBUST_ACCESS_EXT=_C('GL_CONTEXT_ROBUST_ACCESS_EXT',0x90F3)
15GL_GUILTY_CONTEXT_RESET_EXT=_C('GL_GUILTY_CONTEXT_RESET_EXT',0x8253)
16GL_INNOCENT_CONTEXT_RESET_EXT=_C('GL_INNOCENT_CONTEXT_RESET_EXT',0x8254)
17GL_LOSE_CONTEXT_ON_RESET_EXT=_C('GL_LOSE_CONTEXT_ON_RESET_EXT',0x8252)
18GL_NO_ERROR=_C('GL_NO_ERROR',0)
19GL_NO_RESET_NOTIFICATION_EXT=_C('GL_NO_RESET_NOTIFICATION_EXT',0x8261)
20GL_RESET_NOTIFICATION_STRATEGY_EXT=_C('GL_RESET_NOTIFICATION_STRATEGY_EXT',0x8256)
21GL_UNKNOWN_CONTEXT_RESET_EXT=_C('GL_UNKNOWN_CONTEXT_RESET_EXT',0x8255)
22@_f
23@_p.types(_cs.GLenum,)
24def glGetGraphicsResetStatusEXT():pass
25@_f
26@_p.types(None,_cs.GLuint,_cs.GLint,_cs.GLsizei,arrays.GLfloatArray)
27def glGetnUniformfvEXT(program,location,bufSize,params):pass
28@_f
29@_p.types(None,_cs.GLuint,_cs.GLint,_cs.GLsizei,arrays.GLintArray)
30def glGetnUniformivEXT(program,location,bufSize,params):pass
31@_f
32@_p.types(None,_cs.GLint,_cs.GLint,_cs.GLsizei,_cs.GLsizei,_cs.GLenum,_cs.GLenum,_cs.GLsizei,ctypes.c_void_p)
33def glReadnPixelsEXT(x,y,width,height,format,type,bufSize,data):pass
34