Comment 17 for bug 428769

Revision history for this message
Bryce Harrington (bryce) wrote :

I *think* the problem may be that this code:

+ if (width > screen->maxTextureSize || height > screen->maxTextureSize)

needs to be:

+ if (width >= screen->maxTextureSize || height >= screen->maxTextureSize)