Example usage for org.lwjgl.opengl GL33 glVertexP2ui

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

Introduction

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

Prototype

public static native void glVertexP2ui(@NativeType("GLenum") int type, @NativeType("GLuint") int value);

Source Link

Document

Packed component version of GL11#glVertex2f Vertex2f .

Usage

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

License:Open Source License

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