I have an OpenGL ES game application which uses a single PNG sprite with 27 frames on it horizontaly, to represent an animated monster. So, my PNG currently is 27 * 96 px width and 96 px height.
I recently added new animations to it, so it became 57 frames, now it is 57 * 96 which is a little more than 5000 px wide. Now my textures are simply displayed as white squares!?
I've tested it with different images, sizes (in KB) and resolutions, and I've found that any texture wider than 4000 px gets this white square, no matter the file size.
Is it a memory problem?
Do you have any ideas on fixing it?
I am testing on HTC Desire which I believe operates with Adreno 200 GPU.