Example usage for org.lwjgl.opengl GL11 glRasterPos3f

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

Introduction

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

Prototype

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

Source Link

Document

Float version of #glRasterPos3i RasterPos3i .

Usage

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

License:Open Source License

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