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_SGIX_instruments'
12def _f( function ):
13    return _p.createFunction( function,_p.PLATFORM.GL,'GL_SGIX_instruments',error_checker=_errors._error_checker)
14GL_INSTRUMENT_BUFFER_POINTER_SGIX=_C('GL_INSTRUMENT_BUFFER_POINTER_SGIX',0x8180)
15GL_INSTRUMENT_MEASUREMENTS_SGIX=_C('GL_INSTRUMENT_MEASUREMENTS_SGIX',0x8181)
16@_f
17@_p.types(_cs.GLint,)
18def glGetInstrumentsSGIX():pass
19@_f
20@_p.types(None,_cs.GLsizei,arrays.GLintArray)
21def glInstrumentsBufferSGIX(size,buffer):pass
22@_f
23@_p.types(_cs.GLint,arrays.GLintArray)
24def glPollInstrumentsSGIX(marker_p):pass
25@_f
26@_p.types(None,_cs.GLint)
27def glReadInstrumentsSGIX(marker):pass
28@_f
29@_p.types(None,)
30def glStartInstrumentsSGIX():pass
31@_f
32@_p.types(None,_cs.GLint)
33def glStopInstrumentsSGIX(marker):pass
34