1'''Autogenerated by xml_generate script, do not edit!'''
2from OpenGL import platform as _p, arrays
3# Code generation uses this
4from OpenGL.raw.GL import _types as _cs
5# End users want this...
6from OpenGL.raw.GL._types import *
7from OpenGL.raw.GL import _errors
8from OpenGL.constant import Constant as _C
9
10import ctypes
11_EXTENSION_NAME = 'GL_EXT_timer_query'
12def _f( function ):
13    return _p.createFunction( function,_p.PLATFORM.GL,'GL_EXT_timer_query',error_checker=_errors._error_checker)
14GL_TIME_ELAPSED_EXT=_C('GL_TIME_ELAPSED_EXT',0x88BF)
15@_f
16@_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLint64Array)
17def glGetQueryObjecti64vEXT(id,pname,params):pass
18@_f
19@_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLuint64Array)
20def glGetQueryObjectui64vEXT(id,pname,params):pass
21