Viewing file: texture_compression.py (5.62 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'''OpenGL extension ARB.texture_compression
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_ARB_texture_compression' _DEPRECATED = False GL_COMPRESSED_ALPHA_ARB = constant.Constant( 'GL_COMPRESSED_ALPHA_ARB', 0x84E9 ) GL_COMPRESSED_LUMINANCE_ARB = constant.Constant( 'GL_COMPRESSED_LUMINANCE_ARB', 0x84EA ) GL_COMPRESSED_LUMINANCE_ALPHA_ARB = constant.Constant( 'GL_COMPRESSED_LUMINANCE_ALPHA_ARB', 0x84EB ) GL_COMPRESSED_INTENSITY_ARB = constant.Constant( 'GL_COMPRESSED_INTENSITY_ARB', 0x84EC ) GL_COMPRESSED_RGB_ARB = constant.Constant( 'GL_COMPRESSED_RGB_ARB', 0x84ED ) GL_COMPRESSED_RGBA_ARB = constant.Constant( 'GL_COMPRESSED_RGBA_ARB', 0x84EE ) GL_TEXTURE_COMPRESSION_HINT_ARB = constant.Constant( 'GL_TEXTURE_COMPRESSION_HINT_ARB', 0x84EF ) glget.addGLGetConstant( GL_TEXTURE_COMPRESSION_HINT_ARB, (1,) ) GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = constant.Constant( 'GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB', 0x86A0 ) GL_TEXTURE_COMPRESSED_ARB = constant.Constant( 'GL_TEXTURE_COMPRESSED_ARB', 0x86A1 ) GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB = constant.Constant( 'GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB', 0x86A2 ) glget.addGLGetConstant( GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB, (1,) ) GL_COMPRESSED_TEXTURE_FORMATS_ARB = constant.Constant( 'GL_COMPRESSED_TEXTURE_FORMATS_ARB', 0x86A3 ) glget.addGLGetConstant( GL_COMPRESSED_TEXTURE_FORMATS_ARB, (1,) ) glCompressedTexImage3DARB = platform.createExtensionFunction( 'glCompressedTexImage3DARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,constants.GLenum,constants.GLsizei,constants.GLsizei,constants.GLsizei,constants.GLint,constants.GLsizei,ctypes.c_void_p,), doc='glCompressedTexImage3DARB(GLenum(target), GLint(level), GLenum(internalformat), GLsizei(width), GLsizei(height), GLsizei(depth), GLint(border), GLsizei(imageSize), c_void_p(data)) -> None', argNames=('target','level','internalformat','width','height','depth','border','imageSize','data',), deprecated=_DEPRECATED, )
glCompressedTexImage2DARB = platform.createExtensionFunction( 'glCompressedTexImage2DARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,constants.GLenum,constants.GLsizei,constants.GLsizei,constants.GLint,constants.GLsizei,ctypes.c_void_p,), doc='glCompressedTexImage2DARB(GLenum(target), GLint(level), GLenum(internalformat), GLsizei(width), GLsizei(height), GLint(border), GLsizei(imageSize), c_void_p(data)) -> None', argNames=('target','level','internalformat','width','height','border','imageSize','data',), deprecated=_DEPRECATED, )
glCompressedTexImage1DARB = platform.createExtensionFunction( 'glCompressedTexImage1DARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,constants.GLenum,constants.GLsizei,constants.GLint,constants.GLsizei,ctypes.c_void_p,), doc='glCompressedTexImage1DARB(GLenum(target), GLint(level), GLenum(internalformat), GLsizei(width), GLint(border), GLsizei(imageSize), c_void_p(data)) -> None', argNames=('target','level','internalformat','width','border','imageSize','data',), deprecated=_DEPRECATED, )
glCompressedTexSubImage3DARB = platform.createExtensionFunction( 'glCompressedTexSubImage3DARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLsizei,constants.GLsizei,constants.GLsizei,constants.GLenum,constants.GLsizei,ctypes.c_void_p,), doc='glCompressedTexSubImage3DARB(GLenum(target), GLint(level), GLint(xoffset), GLint(yoffset), GLint(zoffset), GLsizei(width), GLsizei(height), GLsizei(depth), GLenum(format), GLsizei(imageSize), c_void_p(data)) -> None', argNames=('target','level','xoffset','yoffset','zoffset','width','height','depth','format','imageSize','data',), deprecated=_DEPRECATED, )
glCompressedTexSubImage2DARB = platform.createExtensionFunction( 'glCompressedTexSubImage2DARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,constants.GLint,constants.GLint,constants.GLsizei,constants.GLsizei,constants.GLenum,constants.GLsizei,ctypes.c_void_p,), doc='glCompressedTexSubImage2DARB(GLenum(target), GLint(level), GLint(xoffset), GLint(yoffset), GLsizei(width), GLsizei(height), GLenum(format), GLsizei(imageSize), c_void_p(data)) -> None', argNames=('target','level','xoffset','yoffset','width','height','format','imageSize','data',), deprecated=_DEPRECATED, )
glCompressedTexSubImage1DARB = platform.createExtensionFunction( 'glCompressedTexSubImage1DARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,constants.GLint,constants.GLsizei,constants.GLenum,constants.GLsizei,ctypes.c_void_p,), doc='glCompressedTexSubImage1DARB(GLenum(target), GLint(level), GLint(xoffset), GLsizei(width), GLenum(format), GLsizei(imageSize), c_void_p(data)) -> None', argNames=('target','level','xoffset','width','format','imageSize','data',), deprecated=_DEPRECATED, )
glGetCompressedTexImageARB = platform.createExtensionFunction( 'glGetCompressedTexImageARB',dll=platform.GL, extension=EXTENSION_NAME, resultType=None, argTypes=(constants.GLenum,constants.GLint,ctypes.c_void_p,), doc='glGetCompressedTexImageARB(GLenum(target), GLint(level), c_void_p(img)) -> None', argNames=('target','level','img',), deprecated=_DEPRECATED, )
def glInitTextureCompressionARB(): '''Return boolean indicating whether this extension is available''' return extensions.hasGLExtension( EXTENSION_NAME )
|