Example usage for org.lwjgl.opengl GL41 glDepthRangef

List of usage examples for org.lwjgl.opengl GL41 glDepthRangef

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL41 glDepthRangef.

Prototype

public static void glDepthRangef(@NativeType("GLfloat") float zNear, @NativeType("GLfloat") float zFar) 

Source Link

Document

Specifies mapping of depth values from normalized device coordinates to window coordinates

Usage

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);
}