Example usage for org.lwjgl.opengl GL11 glRasterPos2d

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

Introduction

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

Prototype

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

Source Link

Document

Double version of #glRasterPos2i RasterPos2i .

Usage

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

License:Open Source License

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