I'm writing an app for Mac OS X with OpenGL 2.1

I have a CVOpenGLTextureRef which holds the texture that I render with GL_QUADS and everything works fine.

I now need to determine which pixels of the texture are black, therefore I have written this code to read raw data from texture:

//"image" is the CVOpenGLTextureRef

GLenum textureTarget = CVOpenGLTextureGetTarget(image);
GLuint textureName = CVOpenGLTextureGetName(image);

glEnable(textureTarget);
glBindTexture(textureTarget, textureName);

GLint textureWidth, textureHeight;
int bytes;
glGetTexLevelParameteriv(textureTarget, 0, GL_TEXTURE_WIDTH, &textureWidth);
glGetTexLevelParameteriv(textureTarget, 0, GL_TEXTURE_HEIGHT, &textureHeight);
bytes = textureWidth*textureHeight;

GLfloat buffer[bytes];
glGetTexImage(textureTarget, 0, GL_LUMINANCE, GL_FLOAT, &buffer);
GLenum error = glGetError();

glGetError() reports GL_NO_ERROR but buffer is unchanged after the call to glGetTexImage()...it's still blank.

Am I doing something wrong?

Note that I can't use glReadPixels() because I modify the texture before rendering it and I need to get raw data of the unmodified texture.

EDIT: I tried even with the sequent approach but I still have zero buffer as output

unsigned char *buffer = (unsigned char *)malloc(textureWidth * textureHeight * sizeof(unsigned char));
glGetTexImage(textureTarget, 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, buffer);

EDIT2: Same problem is reported here and here

link|improve this question

Are you really allocating such (big) array in the stack? You should use malloc/new for allocating. – Matias Valdenegro Nov 25 '11 at 12:03
feedback

2 Answers

Try this:

glGetTexImage(textureTarget, 0, GL_LUMINANCE, GL_FLOAT, buffer);

Perhaps you were thinking of this idiom:

vector< GLfloat > buffer( bytes );
glGetTexImage(textureTarget, 0, GL_LUMINANCE, GL_FLOAT, &buffer[0]);

EDIT: Setting your pack alignment before readback may also be worthwhile:

glPixelStorei(GL_PACK_ALIGNMENT, 1);
link|improve this answer
Last parameter of glGetTexImage should be a pointer to the buffer, right? Because if I right what you suggested, the app crash. I'm not a programmer (I do it only as a hobby in my free time) therefore I can be very confused on that. – Andrea3000 Nov 22 '11 at 22:14
The name of an array is a pointer to the array. – genpfault Nov 22 '11 at 22:16
I think that what I've written in the first post is actually correct. And I'm sure that what I have written in my first edit is also correct. The problem isn't about the way I have coded it..there is something wrong inside glGetTexImage – Andrea3000 Nov 23 '11 at 22:09
feedback
up vote 0 down vote accepted

I have discovered that this is an allowed behavior of glGetTexImage() with respect to CVOpenGLTextureRef. The only sure way is to draw texture into a FBO and then to read from that with glReadPixels()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.