Fixed GLU compile error

This commit is contained in:
Elias Naur 2007-10-17 08:24:07 +00:00
parent d11758044a
commit 07ae6b0513
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ import java.nio.ByteBuffer;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import org.lwjgl.opengl.ARBImaging;
import org.lwjgl.opengl.EXTFramebufferObject;
/**
@ -425,7 +426,7 @@ public class GLU {
return "Stack underflow";
case GL11.GL_OUT_OF_MEMORY:
return "Out of memory";
case GL12.GL_TABLE_TOO_LARGE:
case ARBImaging.GL_TABLE_TOO_LARGE:
return "Table too large";
case EXTFramebufferObject.GL_INVALID_FRAMEBUFFER_OPERATION_EXT:
return "Invalid framebuffer operation";