|
|
|
@ -614,13 +614,12 @@ public class GLRenderer implements Renderer { |
|
|
|
|
|
|
|
|
|
if (state.isDepthTest() && !context.depthTestEnabled) { |
|
|
|
|
gl.glEnable(GL.GL_DEPTH_TEST); |
|
|
|
|
gl.glDepthFunc(convertTestFunction(context.depthFunc)); |
|
|
|
|
context.depthTestEnabled = true; |
|
|
|
|
} else if (!state.isDepthTest() && context.depthTestEnabled) { |
|
|
|
|
gl.glDisable(GL.GL_DEPTH_TEST); |
|
|
|
|
context.depthTestEnabled = false; |
|
|
|
|
} |
|
|
|
|
if (state.getDepthFunc() != context.depthFunc) { |
|
|
|
|
if (state.isDepthTest() && state.getDepthFunc() != context.depthFunc) { |
|
|
|
|
gl.glDepthFunc(convertTestFunction(state.getDepthFunc())); |
|
|
|
|
context.depthFunc = state.getDepthFunc(); |
|
|
|
|
} |
|
|
|
|