Example usage for org.lwjgl.opengl GL41 glClearDepthf

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

Introduction

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

Prototype

public static void glClearDepthf(@NativeType("GLfloat") float depth) 

Source Link

Document

Specifies the clear value for the depth buffer

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glClearDepthf(float a) {
    GL41.glClearDepthf(a);
}