List of usage examples for org.lwjgl.opengl GL41 glDepthRangef
public static void glDepthRangef(@NativeType("GLfloat") float zNear, @NativeType("GLfloat") float zFar)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glDepthRangef(float a, float b) { GL41.glDepthRangef(a, b); }