List of usage examples for org.lwjgl.opengl ARBShadow GL_COMPARE_R_TO_TEXTURE_ARB
int GL_COMPARE_R_TO_TEXTURE_ARB
To view the source code for org.lwjgl.opengl ARBShadow GL_COMPARE_R_TO_TEXTURE_ARB.
Click Source Link
From source file:com.ardor3d.scene.state.lwjgl.util.LwjglTextureUtil.java
License:Open Source License
public static int getGLDepthTextureCompareMode(final DepthTextureCompareMode mode) { switch (mode) { case RtoTexture: return ARBShadow.GL_COMPARE_R_TO_TEXTURE_ARB; case None://from ww w .j a v a2 s. c o m default: return GL11.GL_NONE; } }