Skip to content

Commit f01cef9

Browse files
committed
more gl unpick constants
1 parent 0e7f9fd commit f01cef9

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

unpick-definitions/opengl.unpick

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,31 @@ constant gl_logic_op org/lwjgl/opengl/GL11 GL_OR_INVERTED
9696
constant gl_logic_op org/lwjgl/opengl/GL11 GL_NAND
9797
constant gl_logic_op org/lwjgl/opengl/GL11 GL_SET
9898

99+
constant gl_tex_target org/lwjgl/opengl/GL11 GL_TEXTURE_2D
100+
101+
constant gl_tex_param org/lwjgl/opengl/GL11 GL_TEXTURE_MAG_FILTER
102+
constant gl_tex_param org/lwjgl/opengl/GL11 GL_TEXTURE_MIN_FILTER
103+
constant gl_tex_param org/lwjgl/opengl/GL11 GL_TEXTURE_WRAP_S
104+
constant gl_tex_param org/lwjgl/opengl/GL11 GL_TEXTURE_WRAP_T
105+
constant gl_tex_param org/lwjgl/opengl/GL12 GL_TEXTURE_MIN_LOD
106+
constant gl_tex_param org/lwjgl/opengl/GL12 GL_TEXTURE_MAX_LOD
107+
constant gl_tex_param org/lwjgl/opengl/GL12 GL_TEXTURE_BASE_LEVEL
108+
constant gl_tex_param org/lwjgl/opengl/GL12 GL_TEXTURE_MAX_LEVEL
109+
constant gl_tex_param org/lwjgl/opengl/GL14 GL_TEXTURE_LOD_BIAS
110+
111+
constant gl_tex_value org/lwjgl/opengl/GL11 GL_NEAREST
112+
constant gl_tex_value org/lwjgl/opengl/GL11 GL_NEAREST_MIPMAP_LINEAR
113+
constant gl_tex_value org/lwjgl/opengl/GL11 GL_LINEAR
114+
constant gl_tex_value org/lwjgl/opengl/GL11 GL_LINEAR_MIPMAP_LINEAR
115+
constant gl_tex_value org/lwjgl/opengl/GL11 GL_CLAMP
116+
constant gl_tex_value org/lwjgl/opengl/GL11 GL_REPEAT
117+
118+
constant gl_tex_format org/lwjgl/opengl/GL11 GL_RGBA
119+
120+
constant gl_pixel_format org/lwjgl/opengl/GL12 GL_BGRA
121+
122+
constant gl_pixel_type org/lwjgl/opengl/GL12 GL_UNSIGNED_INT_8_8_8_8_REV
123+
99124
target_method org/lwjgl/opengl/GL11 glBlendFunc (II)V
100125
param 0 gl_blend_factor
101126
param 1 gl_blend_factor
@@ -144,3 +169,28 @@ target_method org/lwjgl/opengl/GL11 glColorMaterial (II)V
144169
target_method org/lwjgl/opengl/GL11 glLogicOp (I)V
145170
param 0 gl_logic_op
146171

172+
target_method org/lwjgl/opengl/GL11 glTexParameteri (III)V
173+
param 0 gl_tex_target
174+
param 1 gl_tex_param
175+
param 2 gl_tex_value
176+
177+
target_method org/lwjgl/opengl/GL11 glGetTexParameteri (II)I
178+
param 0 gl_tex_target
179+
param 1 gl_tex_param
180+
181+
target_method org/lwjgl/opengl/GL11 glTexParameterf (IIF)V
182+
param 0 gl_tex_target
183+
param 1 gl_tex_param
184+
param 2 gl_tex_value
185+
186+
target_method org/lwjgl/opengl/GL11 glTexImage2D (IIIIIIIILjava/nio/IntBuffer;)V
187+
param 0 gl_tex_target
188+
param 2 gl_tex_format
189+
param 6 gl_pixel_format
190+
param 7 gl_pixel_type
191+
192+
target_method org/lwjgl/opengl/GL11 glTexSubImage2D (IIIIIIIILjava/nio/IntBuffer;)V
193+
param 0 gl_tex_target
194+
param 6 gl_pixel_format
195+
param 7 gl_pixel_type
196+

0 commit comments

Comments
 (0)