Removed native GLU

This commit is contained in:
Elias Naur 2004-02-05 17:14:51 +00:00
parent c16c219a48
commit 7288aa58ff
8 changed files with 15 additions and 1030 deletions

View file

@ -43,6 +43,13 @@ package org.lwjgl.opengl;
*/
public class OpenGLException extends RuntimeException {
/**
* Constructor for OpenGLException.
*/
public OpenGLException(int gl_error_code) {
super("GL error code: " + gl_error_code);
}
/**
* Constructor for OpenGLException.
*/