1'''OpenGL extension ARM.rgba8
2
3This module customises the behaviour of the
4OpenGL.raw.GLES2.ARM.rgba8 to provide a more
5Python-friendly API
6
7The official definition of this extension is available here:
8http://www.opengl.org/registry/specs/ARM/rgba8.txt
9'''
10from OpenGL import platform, constant, arrays
11from OpenGL import extensions, wrapper
12import ctypes
13from OpenGL.raw.GLES2 import _types, _glgets
14from OpenGL.raw.GLES2.ARM.rgba8 import *
15from OpenGL.raw.GLES2.ARM.rgba8 import _EXTENSION_NAME
16
17def glInitRgba8ARM():
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