Hello Guest

[Bug] glTexImage2D triggering GL_INVALID_ENUM and gl_FragCoord nonsense

  • 3 Replies
  • 8045 Views
Hey! I've been writing a game and engine with LWJGL 2 for a while, and as LWJGL 3 has recently come out have decided to switch over to it. So far the switch has gone smoothly, but while porting the framebuffer code i've run into two issues which seem to me to be library or driver bugs, although I could be wrong (I try to solve all problems via google, so this is my first time on a forum to try to solve a bug).

Computer specs: Note that this bug also appeared on the same computer's Intel integrated 4000 series graphics chipset.
Code: [Select]
(461345897236914)(Game Thread)> - OS: Windows 7 (windows) (amd64)
(461346247664222)(Render Thread)> - OpenGL Version: 3.2.12874 Core Profile Context 14.100.0.0
(461346247827474)(Render Thread)> - - Vendor: ATI Technologies Inc. (AMD Radeon HD 7900 Series)
(461346247955326)(Render Thread)> - - Supported GLSL Version: 4.30

Issue 1:
When creating the texture for a framebuffer with glTexImage2D(...), supplying a format parameter of GL30.GL_DEPTH_STENCIL will immediately cause glGetError to return GL_INVALID_ENUM, regardless of other parameters. This error will immediately lead to a GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT error when the framebuffer is created with these OGL parameters:
Code: [Select]
GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL30.GL_DEPTH32F_STENCIL8, width, height, 0, GL30.GL_DEPTH_STENCIL, GL11.GL_FLOAT, (ByteBuffer)null);
Issue 2:
When reading gl_FragCoord in a shader while rendering to a framebuffer, nonsense values are given instead: see the attached image, generated with
Code: [Select]
void main() {
fragColor = vec4(gl_FragCoord.xy/renderSize, 1, 1);
}
Note that I have checked, and renderSize is definitely correct.

*

Offline quew8

  • *****
  • 569
  • Because Square Eyes Look More Real
Issue 1:
I've got nothing on that.

Issue 2:
Well it looks like whatever you're passing to renderSize is not what it should be. I believe it should be the number of pixels.

Upgrading to LWJGL3 should not impact any of your OpenGL calls. What I would say is make sure you are using the same OpenGL version that you were previously.

*

Kai

Issue 1: [...]
Googling on "glTexImage2D GL_DEPTH32F_STENCIL8" gave https://software.intel.com/en-us/forums/topic/369363, suggesting to not use GL_FLOAT but GL30.GL_FLOAT_32_UNSIGNED_INT_24_8_REV.

@Kai Just figured that out as well, it seems that GL_FLOAT fails on AMD and Intel hardware for GL_DEPTH32F_STENCIL8, despite the docs being vague on whether or not it should work. Urgh. I also figured out issue 1, which was due to an error in an unrelated bit of testing code. Sorry for the confusion, but at least the errors are fixed.
« Last Edit: January 31, 2015, 17:34:07 by therealergo »