Example usage for org.lwjgl.opengl GL11 glRectd

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

Introduction

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

Prototype

public static native void glRectd(@NativeType("GLdouble") double x1, @NativeType("GLdouble") double y1,
        @NativeType("GLdouble") double x2, @NativeType("GLdouble") double y2);

Source Link

Document

Double version of #glRecti Recti .

Usage

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

License:Open Source License

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