~matobet/pyopengl/Python3

« back to all changes in this revision

Viewing changes to raw/GL/VERSION/GL_1_2.py

  • Committer: matobet at gmail
  • Date: 2010-06-26 14:11:04 UTC
  • Revision ID: matobet@gmail.com-20100626141104-k011ofmltgiiu60g
Initial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''OpenGL extension VERSION.GL_1_2
 
2
 
 
3
Automatically generated by the get_gl_extensions script, do not edit!
 
4
'''
 
5
from OpenGL import platform, constants, constant, arrays
 
6
from OpenGL import extensions
 
7
from OpenGL.GL import glget
 
8
import ctypes
 
9
EXTENSION_NAME = 'GL_VERSION_GL_1_2'
 
10
_DEPRECATED = False
 
11
GL_UNSIGNED_BYTE_3_3_2 = constant.Constant( 'GL_UNSIGNED_BYTE_3_3_2', 0x8032 )
 
12
GL_UNSIGNED_SHORT_4_4_4_4 = constant.Constant( 'GL_UNSIGNED_SHORT_4_4_4_4', 0x8033 )
 
13
GL_UNSIGNED_SHORT_5_5_5_1 = constant.Constant( 'GL_UNSIGNED_SHORT_5_5_5_1', 0x8034 )
 
14
GL_UNSIGNED_INT_8_8_8_8 = constant.Constant( 'GL_UNSIGNED_INT_8_8_8_8', 0x8035 )
 
15
GL_UNSIGNED_INT_10_10_10_2 = constant.Constant( 'GL_UNSIGNED_INT_10_10_10_2', 0x8036 )
 
16
GL_TEXTURE_BINDING_3D = constant.Constant( 'GL_TEXTURE_BINDING_3D', 0x806A )
 
17
GL_PACK_SKIP_IMAGES = constant.Constant( 'GL_PACK_SKIP_IMAGES', 0x806B )
 
18
GL_PACK_IMAGE_HEIGHT = constant.Constant( 'GL_PACK_IMAGE_HEIGHT', 0x806C )
 
19
GL_UNPACK_SKIP_IMAGES = constant.Constant( 'GL_UNPACK_SKIP_IMAGES', 0x806D )
 
20
GL_UNPACK_IMAGE_HEIGHT = constant.Constant( 'GL_UNPACK_IMAGE_HEIGHT', 0x806E )
 
21
GL_TEXTURE_3D = constant.Constant( 'GL_TEXTURE_3D', 0x806F )
 
22
GL_PROXY_TEXTURE_3D = constant.Constant( 'GL_PROXY_TEXTURE_3D', 0x8070 )
 
23
GL_TEXTURE_DEPTH = constant.Constant( 'GL_TEXTURE_DEPTH', 0x8071 )
 
24
GL_TEXTURE_WRAP_R = constant.Constant( 'GL_TEXTURE_WRAP_R', 0x8072 )
 
25
GL_MAX_3D_TEXTURE_SIZE = constant.Constant( 'GL_MAX_3D_TEXTURE_SIZE', 0x8073 )
 
26
GL_UNSIGNED_BYTE_2_3_3_REV = constant.Constant( 'GL_UNSIGNED_BYTE_2_3_3_REV', 0x8362 )
 
27
GL_UNSIGNED_SHORT_5_6_5 = constant.Constant( 'GL_UNSIGNED_SHORT_5_6_5', 0x8363 )
 
28
GL_UNSIGNED_SHORT_5_6_5_REV = constant.Constant( 'GL_UNSIGNED_SHORT_5_6_5_REV', 0x8364 )
 
29
GL_UNSIGNED_SHORT_4_4_4_4_REV = constant.Constant( 'GL_UNSIGNED_SHORT_4_4_4_4_REV', 0x8365 )
 
30
GL_UNSIGNED_SHORT_1_5_5_5_REV = constant.Constant( 'GL_UNSIGNED_SHORT_1_5_5_5_REV', 0x8366 )
 
31
GL_UNSIGNED_INT_8_8_8_8_REV = constant.Constant( 'GL_UNSIGNED_INT_8_8_8_8_REV', 0x8367 )
 
32
GL_UNSIGNED_INT_2_10_10_10_REV = constant.Constant( 'GL_UNSIGNED_INT_2_10_10_10_REV', 0x8368 )
 
33
GL_BGR = constant.Constant( 'GL_BGR', 0x80E0 )
 
34
GL_BGRA = constant.Constant( 'GL_BGRA', 0x80E1 )
 
35
GL_MAX_ELEMENTS_VERTICES = constant.Constant( 'GL_MAX_ELEMENTS_VERTICES', 0x80E8 )
 
36
GL_MAX_ELEMENTS_INDICES = constant.Constant( 'GL_MAX_ELEMENTS_INDICES', 0x80E9 )
 
37
GL_CLAMP_TO_EDGE = constant.Constant( 'GL_CLAMP_TO_EDGE', 0x812F )
 
38
GL_TEXTURE_MIN_LOD = constant.Constant( 'GL_TEXTURE_MIN_LOD', 0x813A )
 
39
GL_TEXTURE_MAX_LOD = constant.Constant( 'GL_TEXTURE_MAX_LOD', 0x813B )
 
40
GL_TEXTURE_BASE_LEVEL = constant.Constant( 'GL_TEXTURE_BASE_LEVEL', 0x813C )
 
41
GL_TEXTURE_MAX_LEVEL = constant.Constant( 'GL_TEXTURE_MAX_LEVEL', 0x813D )
 
42
GL_SMOOTH_POINT_SIZE_RANGE = constant.Constant( 'GL_SMOOTH_POINT_SIZE_RANGE', 0xB12 )
 
43
GL_SMOOTH_POINT_SIZE_GRANULARITY = constant.Constant( 'GL_SMOOTH_POINT_SIZE_GRANULARITY', 0xB13 )
 
44
GL_SMOOTH_LINE_WIDTH_RANGE = constant.Constant( 'GL_SMOOTH_LINE_WIDTH_RANGE', 0xB22 )
 
45
GL_SMOOTH_LINE_WIDTH_GRANULARITY = constant.Constant( 'GL_SMOOTH_LINE_WIDTH_GRANULARITY', 0xB23 )
 
46
GL_ALIASED_LINE_WIDTH_RANGE = constant.Constant( 'GL_ALIASED_LINE_WIDTH_RANGE', 0x846E )
 
47
glBlendColor = platform.createExtensionFunction( 
 
48
'glBlendColor',dll=platform.GL,
 
49
extension=EXTENSION_NAME,
 
50
resultType=None, 
 
51
argTypes=(constants.GLclampf,constants.GLclampf,constants.GLclampf,constants.GLclampf,),
 
52
doc='glBlendColor(GLclampf(red), GLclampf(green), GLclampf(blue), GLclampf(alpha)) -> None',
 
53
argNames=('red','green','blue','alpha',),
 
54
deprecated=_DEPRECATED,
 
55
)
 
56
 
 
57
glBlendEquation = platform.createExtensionFunction( 
 
58
'glBlendEquation',dll=platform.GL,
 
59
extension=EXTENSION_NAME,
 
60
resultType=None, 
 
61
argTypes=(constants.GLenum,),
 
62
doc='glBlendEquation(GLenum(mode)) -> None',
 
63
argNames=('mode',),
 
64
deprecated=_DEPRECATED,
 
65
)
 
66
 
 
67
glDrawRangeElements = platform.createExtensionFunction( 
 
68
'glDrawRangeElements',dll=platform.GL,
 
69
extension=EXTENSION_NAME,
 
70
resultType=None, 
 
71
argTypes=(constants.GLenum,constants.GLuint,constants.GLuint,constants.GLsizei,constants.GLenum,ctypes.c_void_p,),
 
72
doc='glDrawRangeElements(GLenum(mode), GLuint(start), GLuint(end), GLsizei(count), GLenum(type), c_void_p(indices)) -> None',
 
73
argNames=('mode','start','end','count','type','indices',),
 
74
deprecated=_DEPRECATED,
 
75
)
 
76
 
 
77
glTexImage3D = platform.createExtensionFunction( 
 
78
'glTexImage3D',dll=platform.GL,
 
79
extension=EXTENSION_NAME,
 
80
resultType=None, 
 
81
argTypes=(constants.GLenum,constants.GLint,constants.GLint,constants.GLsizei,constants.GLsizei,constants.GLsizei,constants.GLint,constants.GLenum,constants.GLenum,ctypes.c_void_p,),
 
82
doc='glTexImage3D(GLenum(target), GLint(level), GLint(internalformat), GLsizei(width), GLsizei(height), GLsizei(depth), GLint(border), GLenum(format), GLenum(type), c_void_p(pixels)) -> None',
 
83
argNames=('target','level','internalformat','width','height','depth','border','format','type','pixels',),
 
84
deprecated=_DEPRECATED,
 
85
)
 
86
 
 
87
glTexSubImage3D = platform.createExtensionFunction( 
 
88
'glTexSubImage3D',dll=platform.GL,
 
89
extension=EXTENSION_NAME,
 
90
resultType=None, 
 
91
argTypes=(constants.GLenum,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLsizei,constants.GLsizei,constants.GLsizei,constants.GLenum,constants.GLenum,ctypes.c_void_p,),
 
92
doc='glTexSubImage3D(GLenum(target), GLint(level), GLint(xoffset), GLint(yoffset), GLint(zoffset), GLsizei(width), GLsizei(height), GLsizei(depth), GLenum(format), GLenum(type), c_void_p(pixels)) -> None',
 
93
argNames=('target','level','xoffset','yoffset','zoffset','width','height','depth','format','type','pixels',),
 
94
deprecated=_DEPRECATED,
 
95
)
 
96
 
 
97
glCopyTexSubImage3D = platform.createExtensionFunction( 
 
98
'glCopyTexSubImage3D',dll=platform.GL,
 
99
extension=EXTENSION_NAME,
 
100
resultType=None, 
 
101
argTypes=(constants.GLenum,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLsizei,constants.GLsizei,),
 
102
doc='glCopyTexSubImage3D(GLenum(target), GLint(level), GLint(xoffset), GLint(yoffset), GLint(zoffset), GLint(x), GLint(y), GLsizei(width), GLsizei(height)) -> None',
 
103
argNames=('target','level','xoffset','yoffset','zoffset','x','y','width','height',),
 
104
deprecated=_DEPRECATED,
 
105
)
 
106
# import legacy entry points to allow checking for bool(entryPoint)
 
107
from OpenGL.raw.GL.VERSION.GL_1_2_DEPRECATED import *