1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
'''Autogenerated by get_gl_extensions script, do not edit!'''
from OpenGL import platform as _p
from OpenGL.GL import glget
EXTENSION_NAME = 'GL_HP_convolution_border_modes'
_p.unpack_constants( """GL_IGNORE_BORDER_HP 0x8150
GL_CONSTANT_BORDER_HP 0x8151
GL_REPLICATE_BORDER_HP 0x8153
GL_CONVOLUTION_BORDER_COLOR_HP 0x8154""", globals())
def glInitConvolutionBorderModesHP():
'''Return boolean indicating whether this extension is available'''
from OpenGL import extensions
return extensions.hasGLExtension( EXTENSION_NAME )
|