Example usage for org.lwjgl.opengl GL11 glRasterPos4d

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

Introduction

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

Prototype

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

Source Link

Document

Double version of #glRasterPos4i RasterPos4i .

Usage

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

License:Open Source License

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