I'm loading an int* array of RGBA pixel data from a UIImage, doing manipulation on it, then setting the pixels to a Glubyte* texture buffer and writing them to the texture with

glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, texWidth, texHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, texBuffer);

This works fine, however I get some weird pixelation "interference" at the bottom of the screen.

Anyone have any idea what might be causing this effect?

EDIT: Solved this myself, see my answer

link|improve this question

1  
How do you allocate texBuffer? Try allocate texWidth*texHeight*4 bytes and fill the memory with zeros. Still interference? If not then your existing allocation is wrong. – Ville Krumlinde Jan 6 at 20:40
feedback

1 Answer

up vote 0 down vote accepted

The problem here was in the int* buffer declaration, it should have been:

int* pixelArray = malloc(4*w*h);
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.