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_async_'
12def _f( function ):
13    return _p.createFunction( function,_p.PLATFORM.GL,'GL_SGIX_async_',error_checker=_errors._error_checker)
14GL_ASYNC_MARKER_SGIX=_C('GL_ASYNC_MARKER_SGIX',0x8329)
15@_f
16@_p.types(None,_cs.GLuint)
17def glAsyncMarkerSGIX(marker):pass
18@_f
19@_p.types(None,_cs.GLuint,_cs.GLsizei)
20def glDeleteAsyncMarkersSGIX(marker,range):pass
21@_f
22@_p.types(_cs.GLint,arrays.GLuintArray)
23def glFinishAsyncSGIX(markerp):pass
24@_f
25@_p.types(_cs.GLuint,_cs.GLsizei)
26def glGenAsyncMarkersSGIX(range):pass
27@_f
28@_p.types(_cs.GLboolean,_cs.GLuint)
29def glIsAsyncMarkerSGIX(marker):pass
30@_f
31@_p.types(_cs.GLint,arrays.GLuintArray)
32def glPollAsyncSGIX(markerp):pass
33