Visual artifacts in a OpenGL texture on device (iPad) - but NOT on Simulator

696 Views Asked by At

I am using an OpenGL texture on an iPad and get horrible artifacts on the device, while the Simulator shows all perfect and smooth. I believe the iPhone would show the same artifacts.

If I look at the headers, I see that once I include OpenGLES/ES2/gl.h, and in another file OpenGLES/ES1/*.h. Could this be a problem?

Or what may be the reason for the artifacts on the device?

Simulator:

screenshot from simulator

Real device:

screenshot from real device

2

There are 2 best solutions below

0
On

If you're using ES 2.0 then the first guess would be that you have a precision problem. The highp, mediump and lowp GLSL precision specifiers are hints, not absolute commands, as they specify the minimum required precision. It's quite possible that the simulator is giving you more precision than you've explicitly asked for but the device isn't.

If you haven't been scientific about it then try bumping everything to highp as a test, then slowly dial back down and check the results empirically.

1
On

It could be the PNG optimization XCode applies during compilation (try turning it off); see How can I skip compressing one PNG?

While you can turn off PNG optimization/compression entirely using "Compress PNG Files" in your project settings (it's visible only if the project's Base SDK is set to a device SDK, not a simulator SDK), you don't want to do this! Read the link above for details on why, but the gist of it is that the optimization lets the iPhone skip some math that slows down PNG display.

Xcode will only optimize PNG image files that it knows about. To prevent a specific PNG from being optimized, you change its file type so Xcode no longer knows it's a PNG.

  1. Select the file in the project window.
  2. Choose File->Get Info.
  3. On the General tab, change File Type from image.png to file.