1'''OpenGL extension OES.stencil_wrap
2
3This module customises the behaviour of the
4OpenGL.raw.GLES1.OES.stencil_wrap to provide a more
5Python-friendly API
6
7The official definition of this extension is available here:
8http://www.opengl.org/registry/specs/OES/stencil_wrap.txt
9'''
10from OpenGL import platform, constant, arrays
11from OpenGL import extensions, wrapper
12import ctypes
13from OpenGL.raw.GLES1 import _types, _glgets
14from OpenGL.raw.GLES1.OES.stencil_wrap import *
15from OpenGL.raw.GLES1.OES.stencil_wrap import _EXTENSION_NAME
16
17def glInitStencilWrapOES():
18    '''Return boolean indicating whether this extension is available'''
19    from OpenGL import extensions
20    return extensions.hasGLExtension( _EXTENSION_NAME )
21
22
23### END AUTOGENERATED SECTION