Example usage for org.lwjgl.opengl GL11 glRasterPos3d

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

Introduction

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

Prototype

public static native void glRasterPos3d(@NativeType("GLdouble") double x, @NativeType("GLdouble") double y,
        @NativeType("GLdouble") double z);

Source Link

Document

Double version of #glRasterPos3i RasterPos3i .

Usage

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

License:Open Source License

public static void glRasterPos3d(double a, double b, double c) {
    GL11.glRasterPos3d(a, b, c);
}