lwjgl/src/java/org/lwjgl/opengl/Util.java

91 lines
3.0 KiB
Java
Raw Normal View History

2004-11-25 17:20:45 -05:00
/*
2008-04-07 14:36:09 -04:00
* Copyright (c) 2002-2008 LWJGL Project
2002-08-30 17:30:40 -04:00
* All rights reserved.
2004-11-25 17:20:45 -05:00
*
2002-08-30 17:30:40 -04:00
* Redistribution and use in source and binary forms, with or without
2004-11-25 17:20:45 -05:00
* modification, are permitted provided that the following conditions are
2002-08-30 17:30:40 -04:00
* met:
2004-11-25 17:20:45 -05:00
*
* * Redistributions of source code must retain the above copyright
2002-08-30 17:30:40 -04:00
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
2004-11-25 17:20:45 -05:00
* * Neither the name of 'LWJGL' nor the names of
* its contributors may be used to endorse or promote products derived
2002-08-30 17:30:40 -04:00
* from this software without specific prior written permission.
2004-11-25 17:20:45 -05:00
*
2002-08-30 17:30:40 -04:00
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2004-11-25 17:20:45 -05:00
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2002-08-30 17:30:40 -04:00
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2004-11-25 17:20:45 -05:00
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2002-08-30 17:30:40 -04:00
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2003-08-17 12:38:57 -04:00
package org.lwjgl.opengl;
2002-08-30 17:30:40 -04:00
import static org.lwjgl.opengl.ARBImaging.*;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.opengl.GL30.*;
2004-03-26 06:26:04 -05:00
2002-08-30 17:30:40 -04:00
/**
2003-08-17 12:38:57 -04:00
* Simple utility class.
2004-02-15 16:46:58 -05:00
*
2003-08-17 12:38:57 -04:00
* @author cix_foo <cix_foo@users.sourceforge.net>
2002-08-30 17:30:40 -04:00
* @version $Revision$
*/
2004-03-26 06:26:04 -05:00
public final class Util {
2004-11-25 17:20:45 -05:00
/** No c'tor */
private Util() {
}
/**
* Throws OpenGLException if glGetError() returns anything else than GL_NO_ERROR
*
*/
public static void checkGLError() throws OpenGLException {
if ( ContextCapabilities.DEBUG && GLContext.getCapabilities().tracker.isBeginEnd() ) // Do not call GetError inside a Begin/End pair.
return;
int err = glGetError();
if ( err != GL_NO_ERROR ) {
2004-03-07 11:01:45 -05:00
throw new OpenGLException(err);
}
}
/**
* Translate a GL error code to a String describing the error
*/
public static String translateGLErrorString(int error_code) {
switch (error_code) {
case GL_NO_ERROR:
return "No error";
case GL_INVALID_ENUM:
return "Invalid enum";
case GL_INVALID_VALUE:
return "Invalid value";
case GL_INVALID_OPERATION:
return "Invalid operation";
case GL_STACK_OVERFLOW:
return "Stack overflow";
case GL_STACK_UNDERFLOW:
return "Stack underflow";
case GL_OUT_OF_MEMORY:
return "Out of memory";
case GL_TABLE_TOO_LARGE:
return "Table too large";
case GL_INVALID_FRAMEBUFFER_OPERATION:
return "Invalid framebuffer operation";
default:
return null;
}
}
2003-08-17 12:38:57 -04:00
}