1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
'''OpenGL extension ATI.vertex_attrib_array_object
Overview (from the spec)
This extension defines an interface that allows multiple sets of
generic vertex attribute data to be cached in persistent server-side
memory. It is intended to allow client data to be stored in memory
that can be directly accessed by graphics hardware.
The official definition of this extension is available here:
http://oss.sgi.com/projects/ogl-sample/registry/ATI/vertex_attrib_array_object.txt
Automatically generated by the get_gl_extensions script, do not edit!
'''
from OpenGL import platform, constants, constant, arrays
from OpenGL import extensions
from OpenGL.GL import glget
import ctypes
EXTENSION_NAME = 'GL_ATI_vertex_attrib_array_object'
glVertexAttribArrayObjectATI = platform.createExtensionFunction(
'glVertexAttribArrayObjectATI', dll=platform.GL,
extension=EXTENSION_NAME,
resultType=None,
argTypes=(constants.GLuint, constants.GLint, constants.GLenum, constants.GLboolean, constants.GLsizei, constants.GLuint, constants.GLuint,),
doc = 'glVertexAttribArrayObjectATI( GLuint(index), GLint(size), GLenum(type), GLboolean(normalized), GLsizei(stride), GLuint(buffer), GLuint(offset) ) -> None',
argNames = ('index', 'size', 'type', 'normalized', 'stride', 'buffer', 'offset',),
)
glGetVertexAttribArrayObjectfvATI = platform.createExtensionFunction(
'glGetVertexAttribArrayObjectfvATI', dll=platform.GL,
extension=EXTENSION_NAME,
resultType=None,
argTypes=(constants.GLuint, constants.GLenum, arrays.GLfloatArray,),
doc = 'glGetVertexAttribArrayObjectfvATI( GLuint(index), GLenum(pname), GLfloatArray(params) ) -> None',
argNames = ('index', 'pname', 'params',),
)
glGetVertexAttribArrayObjectivATI = platform.createExtensionFunction(
'glGetVertexAttribArrayObjectivATI', dll=platform.GL,
extension=EXTENSION_NAME,
resultType=None,
argTypes=(constants.GLuint, constants.GLenum, arrays.GLintArray,),
doc = 'glGetVertexAttribArrayObjectivATI( GLuint(index), GLenum(pname), GLintArray(params) ) -> None',
argNames = ('index', 'pname', 'params',),
)
def glInitVertexAttribArrayObjectATI():
'''Return boolean indicating whether this extension is available'''
return extensions.hasGLExtension( EXTENSION_NAME )
|