mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-13 12:11:30 +01:00
26 lines
329 B
Java
26 lines
329 B
Java
/**
|
|
* (C) 2002 Shaven Puppy Ltd
|
|
*
|
|
* GLU.java Created on Aug 9, 2002 by foo
|
|
*/
|
|
package org.lwjgl.opengl;
|
|
|
|
/**
|
|
* GL Utilities library.
|
|
*
|
|
* @author foo
|
|
*/
|
|
public class GLU implements GLUConstants {
|
|
|
|
/** Handle to GL */
|
|
private final GL gl;
|
|
|
|
/**
|
|
* Constructor for GLU.
|
|
*/
|
|
public GLU(GL gl) {
|
|
this.gl = gl;
|
|
}
|
|
|
|
}
|