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:
Real device:
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.