Added GL constants and GLs 1.1, 1.2, 1.3

This commit is contained in:
Caspian Rychlik-Prince 2002-08-09 19:42:20 +00:00
parent 1b741fdfc5
commit 04819cc981
10 changed files with 1699 additions and 327 deletions

View file

@ -5,6 +5,8 @@
*/
package org.lwjgl.opengl;
import org.lwjgl.Sys;
/**
* GL Utilities library.
*
@ -12,6 +14,10 @@ package org.lwjgl.opengl;
*/
public class GLU implements GLUConstants {
static {
System.loadLibrary(Sys.LIBRARY_NAME);
}
/** Handle to GL */
private final GL gl;