'''Autogenerated by xml_generate script, do not edit!''' from OpenGL import platform as _p, arrays # Code generation uses this from OpenGL.raw.GLES2 import _types as _cs # End users want this... from OpenGL.raw.GLES2._types import * from OpenGL.raw.GLES2 import _errors from OpenGL.constant import Constant as _C import ctypes _EXTENSION_NAME = 'GLES2_EXT_disjoint_timer_query' def _f( function ): return _p.createFunction( function,_p.PLATFORM.GLES2,'GLES2_EXT_disjoint_timer_query',error_checker=_errors._error_checker) GL_CURRENT_QUERY_EXT=_C('GL_CURRENT_QUERY_EXT',0x8865) GL_GPU_DISJOINT_EXT=_C('GL_GPU_DISJOINT_EXT',0x8FBB) GL_QUERY_COUNTER_BITS_EXT=_C('GL_QUERY_COUNTER_BITS_EXT',0x8864) GL_QUERY_RESULT_AVAILABLE_EXT=_C('GL_QUERY_RESULT_AVAILABLE_EXT',0x8867) GL_QUERY_RESULT_EXT=_C('GL_QUERY_RESULT_EXT',0x8866) GL_TIMESTAMP_EXT=_C('GL_TIMESTAMP_EXT',0x8E28) GL_TIME_ELAPSED_EXT=_C('GL_TIME_ELAPSED_EXT',0x88BF) @_f @_p.types(None,_cs.GLenum,_cs.GLuint) def glBeginQueryEXT(target,id):pass @_f @_p.types(None,_cs.GLsizei,arrays.GLuintArray) def glDeleteQueriesEXT(n,ids):pass @_f @_p.types(None,_cs.GLenum) def glEndQueryEXT(target):pass @_f @_p.types(None,_cs.GLsizei,arrays.GLuintArray) def glGenQueriesEXT(n,ids):pass @_f @_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLint64Array) def glGetQueryObjecti64vEXT(id,pname,params):pass @_f @_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLintArray) def glGetQueryObjectivEXT(id,pname,params):pass @_f @_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLuint64Array) def glGetQueryObjectui64vEXT(id,pname,params):pass @_f @_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLuintArray) def glGetQueryObjectuivEXT(id,pname,params):pass @_f @_p.types(None,_cs.GLenum,_cs.GLenum,arrays.GLintArray) def glGetQueryivEXT(target,pname,params):pass @_f @_p.types(_cs.GLboolean,_cs.GLuint) def glIsQueryEXT(id):pass @_f @_p.types(None,_cs.GLuint,_cs.GLenum) def glQueryCounterEXT(id,target):pass