Example usage for org.lwjgl.opengl GL11 glRasterPos3i

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

Introduction

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

Prototype

public static native void glRasterPos3i(@NativeType("GLint") int x, @NativeType("GLint") int y,
        @NativeType("GLint") int z);

Source Link

Document

Sets the three-dimensional current raster position.

Usage

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

License:Open Source License

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