Example usage for org.lwjgl.opengl GL14 glSecondaryColorPointer

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

Introduction

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

Prototype

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

Source Link

Document

Specifies the location and organization of a secondary color array.

Usage

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

License:Open Source License

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

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

License:Open Source License

public static void glSecondaryColorPointer(int a, boolean b, int c, ByteBuffer d) {
    GL14.glSecondaryColorPointer(a, b, c, d);
}