Example usage for org.lwjgl.opengl GL14 glFogCoordPointer

List of usage examples for org.lwjgl.opengl GL14 glFogCoordPointer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL14 glFogCoordPointer.

Prototype

public static void glFogCoordPointer(@NativeType("GLenum") int type, @NativeType("GLsizei") int stride,
        @NativeType("void const *") FloatBuffer pointer) 

Source Link

Document

Specifies the location and organization of a fog coordinate array.

Usage

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

License:Open Source License

public static void glFogCoordPointer(int a, int b, long c) {
    GL14.glFogCoordPointer(a, b, c);
}