Example usage for org.lwjgl.opengl GL11 glRasterPos4i

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

Introduction

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

Prototype

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

Source Link

Document

Sets the four-dimensional current raster position.

Usage

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

License:Open Source License

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