@@ -75,6 +75,7 @@ constant gl_state org/lwjgl/opengl/GL11 GL_DEPTH_BUFFER_BIT
7575constant gl_state org/lwjgl/opengl/GL11 GL_CULL_FACE
7676constant gl_state org/lwjgl/opengl/GL11 GL_PROJECTION
7777constant gl_state org/lwjgl/opengl/GL11 GL_POLYGON_OFFSET_LINE
78+ constant gl_state org/lwjgl/opengl/GL11 GL_POLYGON_OFFSET_FILL
7879constant gl_state org/lwjgl/opengl/GL11 GL_COLOR_LOGIC_OP
7980constant gl_state org/lwjgl/opengl/GL11 GL_SCISSOR_TEST
8081constant gl_state org/lwjgl/opengl/GL11 GL_COLOR_MATERIAL
@@ -121,10 +122,24 @@ constant gl_pixel_format org/lwjgl/opengl/GL12 GL_BGRA
121122
122123constant gl_pixel_type org/lwjgl/opengl/GL12 GL_UNSIGNED_INT_8_8_8_8_REV
123124
125+ constant gl_list_mode org/lwjgl/opengl/GL11 GL_COMPILE
126+ constant gl_list_mode org/lwjgl/opengl/GL11 GL_COMPILE_AND_EXECUTE
127+
128+ constant gl_occlusion_query_target org/lwjgl/opengl/ARBOcclusionQuery GL_SAMPLES_PASSED_ARB
129+
130+ constant gl_occlusion_query_parameter org/lwjgl/opengl/ARBOcclusionQuery GL_QUERY_RESULT_ARB
131+ constant gl_occlusion_query_parameter org/lwjgl/opengl/ARBOcclusionQuery GL_QUERY_RESULT_AVAILABLE_ARB
132+
124133target_method org/lwjgl/opengl/GL11 glBlendFunc (II)V
125134 param 0 gl_blend_factor
126135 param 1 gl_blend_factor
127136
137+ target_method net/minecraft/client/render/platform/GLX blendFuncSeparate (IIII)V
138+ param 0 gl_blend_factor
139+ param 1 gl_blend_factor
140+ param 2 gl_blend_factor
141+ param 3 gl_blend_factor
142+
128143target_method org/lwjgl/opengl/GL11 glMatrixMode (I)V
129144 param 0 gl_state
130145
@@ -194,3 +209,15 @@ target_method org/lwjgl/opengl/GL11 glTexSubImage2D (IIIIIIIILjava/nio/IntBuffer
194209 param 6 gl_pixel_format
195210 param 7 gl_pixel_type
196211
212+ target_method org/lwjgl/opengl/GL11 glNewList (II)V
213+ param 1 gl_list_mode
214+
215+ target_method org/lwjgl/opengl/ARBOcclusionQuery glBeginQueryARB (II)V
216+ param 0 gl_occlusion_query_target
217+
218+ target_method org/lwjgl/opengl/ARBOcclusionQuery glEndQueryARB (I)V
219+ param 0 gl_occlusion_query_target
220+
221+ target_method org/lwjgl/opengl/ARBOcclusionQuery glGetQueryObjectuARB (IILjava/nio/IntBuffer;)V
222+ param 1 gl_occlusion_query_parameter
223+
0 commit comments