Example usage for org.lwjgl.opengl GL11 glTexGenf

List of usage examples for org.lwjgl.opengl GL11 glTexGenf

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glTexGenf.

Prototype

public static native void glTexGenf(@NativeType("GLenum") int coord, @NativeType("GLenum") int pname,
        @NativeType("GLfloat") float param);

Source Link

Document

Float version of #glTexGeni TexGeni .

Usage

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

License:Open Source License

public static void glTexGenf(int a, int b, float c) {
    GL11.glTexGenf(a, b, c);
}