Example usage for org.lwjgl.opengl GL11 glTexGend

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

Introduction

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

Prototype

public static native void glTexGend(@NativeType("GLenum") int coord, @NativeType("GLenum") int pname,
        @NativeType("GLdouble") double param);

Source Link

Document

Double version of #glTexGeni TexGeni .

Usage

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

License:Open Source License

public static void glTexGend(int a, int b, double c) {
    GL11.glTexGend(a, b, c);
}