summaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-02-22 03:37:22 +0100
committerSven Gothel <[email protected]>2012-02-22 03:37:22 +0100
commitd2ce5dd0feb2af211b6a94eaacc06110026b94b1 (patch)
treea7001c0f5e8f92ff7e6ce90c0293377871406b8d /src/jogl/classes/com
parentd2d3720d940566608ea14b14cb4aeb5890ff21e1 (diff)
FBObject: Meaningfull error message if TexImage2D fails.
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/FBObject.java27
1 files changed, 17 insertions, 10 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/FBObject.java b/src/jogl/classes/com/jogamp/opengl/util/FBObject.java
index 0b6094128..3e049a334 100644
--- a/src/jogl/classes/com/jogamp/opengl/util/FBObject.java
+++ b/src/jogl/classes/com/jogamp/opengl/util/FBObject.java
@@ -210,18 +210,14 @@ public class FBObject {
*/
public int attachTexture2D(GL gl, int texUnit, int magFilter, int minFilter, int wrapS, int wrapT) throws GLException {
final int textureInternalFormat, textureDataFormat, textureDataType;
- if(gl.isGL2()) {
- textureInternalFormat=GL.GL_RGBA8;
- textureDataFormat=GL2.GL_BGRA;
- textureDataType=GL2.GL_UNSIGNED_INT_8_8_8_8_REV;
- } else if(gl.isGLES()) {
+ if(gl.isGLES()) {
textureInternalFormat=GL.GL_RGBA;
textureDataFormat=GL.GL_RGBA;
textureDataType=GL.GL_UNSIGNED_BYTE;
- } else {
- textureInternalFormat=GL.GL_RGB;
- textureDataFormat=GL.GL_RGB;
- textureDataType=GL.GL_UNSIGNED_BYTE;
+ } else {
+ textureInternalFormat=GL.GL_RGBA8;
+ textureDataFormat=GL.GL_BGRA;
+ textureDataType=GL2GL3.GL_UNSIGNED_INT_8_8_8_8_REV;
}
return attachTexture2D(gl, texUnit, textureInternalFormat, textureDataFormat, textureDataType, magFilter, minFilter, wrapS, wrapT);
}
@@ -265,7 +261,18 @@ public class FBObject {
checkNoError(gl, gl.glGetError(), "FBObject Init.bindTex"); // throws GLException if error
gl.glTexImage2D(GL.GL_TEXTURE_2D, 0, textureInternalFormat, width, height, 0,
textureDataFormat, textureDataType, null);
- checkNoError(gl, gl.glGetError(), "FBObject Init.texImage2D"); // throws GLException if error
+ int glerr = gl.glGetError();
+ if(GL.GL_NO_ERROR != glerr) {
+ int[] sz = new int[1];
+ gl.glGetIntegerv(GL.GL_MAX_TEXTURE_SIZE, sz, 0);
+ // throws GLException if error
+ checkNoError(gl, glerr, "FBObject Init.texImage2D: "+
+ " int-fmt 0x"+Integer.toHexString(textureInternalFormat)+
+ ", "+width+"x"+height+
+ ", data-fmt 0x"+Integer.toHexString(textureDataFormat)+
+ ", data-type 0x"+Integer.toHexString(textureDataType)+
+ ", max tex-sz "+sz[0]);
+ }
if( 0 < magFilter ) {
gl.glTexParameteri(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_MAG_FILTER, magFilter);
}