'''OpenGL extension SGIS.fog_function
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_SGIS_fog_function'
_DEPRECATED = False
GL_FOG_FUNC_SGIS = constant.Constant( 'GL_FOG_FUNC_SGIS', 0x812A )
GL_FOG_FUNC_POINTS_SGIS = constant.Constant( 'GL_FOG_FUNC_POINTS_SGIS', 0x812B )
GL_MAX_FOG_FUNC_POINTS_SGIS = constant.Constant( 'GL_MAX_FOG_FUNC_POINTS_SGIS', 0x812C )
glFogFuncSGIS = platform.createExtensionFunction(
'glFogFuncSGIS',dll=platform.GL,
extension=EXTENSION_NAME,
resultType=None,
argTypes=(constants.GLsizei,arrays.GLfloatArray,),
doc='glFogFuncSGIS(GLsizei(n), GLfloatArray(points)) -> None',
argNames=('n','points',),
deprecated=_DEPRECATED,
)
glGetFogFuncSGIS = platform.createExtensionFunction(
'glGetFogFuncSGIS',dll=platform.GL,
extension=EXTENSION_NAME,
resultType=None,
argTypes=(arrays.GLfloatArray,),
doc='glGetFogFuncSGIS(GLfloatArray(points)) -> None',
argNames=('points',),
deprecated=_DEPRECATED,
)
def glInitFogFunctionSGIS():
'''Return boolean indicating whether this extension is available'''
return extensions.hasGLExtension( EXTENSION_NAME )
|