Added GLU and GLUT, and core GL commands

This commit is contained in:
Caspian Rychlik-Prince 2002-08-09 18:50:58 +00:00
parent fec4678286
commit 1b741fdfc5
8 changed files with 439 additions and 9 deletions

View file

@ -0,0 +1,25 @@
/**
* (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;
}
}