Example usage for org.lwjgl.opengl GL11 glRasterPos4f

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

Introduction

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

Prototype

public static native void glRasterPos4f(@NativeType("GLfloat") float x, @NativeType("GLfloat") float y,
        @NativeType("GLfloat") float z, @NativeType("GLfloat") float w);

Source Link

Document

Float version of RasterPos4i.

Usage

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

License:Open Source License

public static void glRasterPos4f(float a, float b, float c, float d) {
    GL11.glRasterPos4f(a, b, c, d);
}