Example usage for org.lwjgl.opengl GL33 glTexCoordP4ui

List of usage examples for org.lwjgl.opengl GL33 glTexCoordP4ui

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL33 glTexCoordP4ui.

Prototype

public static native void glTexCoordP4ui(@NativeType("GLenum") int type, @NativeType("GLuint") int coords);

Source Link

Document

Packed component version of GL11#glTexCoord4f TexCoord4f .

Usage

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

License:Open Source License

public static void glTexCoordP4ui(int a, int b) {
    GL33.glTexCoordP4ui(a, b);
}