Added INVALID_FRAMEBUFFER_OPERATION_EXT in GLU.gluErrorString

This commit is contained in:
Ioannis Tsakpinis 2006-09-01 20:15:05 +00:00
parent 93aa253732
commit 71f67b1859
1 changed files with 45 additions and 42 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.EXTFramebufferObject;
/**
* GLU.java
@ -426,6 +427,8 @@ public class GLU {
return "Out of memory";
case GL12.GL_TABLE_TOO_LARGE:
return "Table too large";
case EXTFramebufferObject.GL_INVALID_FRAMEBUFFER_OPERATION_EXT:
return "Invalid framebuffer operation";
case GLU.GLU_INVALID_ENUM:
return "Invalid enum (glu)";
case GLU.GLU_INVALID_VALUE: