Viewing file: paletted_texture.py (2.58 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'''OpenGL extension EXT.paletted_texture
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_EXT_paletted_texture' _DEPRECATED = False GL_COLOR_INDEX1_EXT = constant.Constant( 'GL_COLOR_INDEX1_EXT', 0x80E2 ) GL_COLOR_INDEX2_EXT = constant.Constant( 'GL_COLOR_INDEX2_EXT', 0x80E3 ) GL_COLOR_INDEX4_EXT = constant.Constant( 'GL_COLOR_INDEX4_EXT', 0x80E4 ) GL_COLOR_INDEX8_EXT = constant.Constant( 'GL_COLOR_INDEX8_EXT', 0x80E5 ) GL_COLOR_INDEX12_EXT = constant.Constant( 'GL_COLOR_INDEX12_EXT', 0x80E6 ) GL_COLOR_INDEX16_EXT = constant.Constant( 'GL_COLOR_INDEX16_EXT', 0x80E7 ) GL_TEXTURE_INDEX_SIZE_EXT = constant.Constant( 'GL_TEXTURE_INDEX_SIZE_EXT', 0x80ED ) glColorTableEXT = platform.createExtensionFunction( 'glColorTableEXT',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLenum,constants.GLsizei,constants.GLenum,constants.GLenum,ctypes.c_void_p,), doc='glColorTableEXT(GLenum(target), GLenum(internalFormat), GLsizei(width), GLenum(format), GLenum(type), c_void_p(table)) -> None', argNames=('target','internalFormat','width','format','type','table',), deprecated=_DEPRECATED, )
glGetColorTableEXT = platform.createExtensionFunction( 'glGetColorTableEXT',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLenum,constants.GLenum,ctypes.c_void_p,), doc='glGetColorTableEXT(GLenum(target), GLenum(format), GLenum(type), c_void_p(data)) -> None', argNames=('target','format','type','data',), deprecated=_DEPRECATED, )
glGetColorTableParameterivEXT = platform.createExtensionFunction( 'glGetColorTableParameterivEXT',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLenum,arrays.GLintArray,), doc='glGetColorTableParameterivEXT(GLenum(target), GLenum(pname), GLintArray(params)) -> None', argNames=('target','pname','params',), deprecated=_DEPRECATED, )
glGetColorTableParameterfvEXT = platform.createExtensionFunction( 'glGetColorTableParameterfvEXT',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLenum,arrays.GLfloatArray,), doc='glGetColorTableParameterfvEXT(GLenum(target), GLenum(pname), GLfloatArray(params)) -> None', argNames=('target','pname','params',), deprecated=_DEPRECATED, )
def glInitPalettedTextureEXT(): '''Return boolean indicating whether this extension is available''' return extensions.hasGLExtension( EXTENSION_NAME )
|