I'm working on a game for iOS and I'm having some trouble with a texture using glDrawArrays (using cocos2D v1.0.1, with OpenGL ES 1.1). I first create an array of CGPoints that define the top and bottom of a hill, along with an array for the texture coordinates:
hillVertices[nHillVertices] = CGPointMake((topLeftVertexX)*CC_CONTENT_SCALE_FACTOR(), topLeftVertexY*CC_CONTENT_SCALE_FACTOR());
hillTexCoords[nHillVertices] = CGPointMake((topLeftVertexX)/textureSize.width, 0.0);
nHillVerticies++;
hillVertices[nHillVertices] = CGPointMake((bottomLeftVertexX)*CC_CONTENT_SCALE_FACTOR(), bottomLeftVertexY*CC_CONTENT_SCALE_FACTOR());
hillTexCoords[nHillVertices] = CGPointMake(topLeftVertexX)/textureSize.width, 1.0);
nHillVerticies++;
and then draw using...
glBindTexture(GL_TEXTURE_2D, groundSprite.texture.name);
glVertexPointer(2, GL_FLOAT, 0, hillVertices);
glTexCoordPointer(2, GL_FLOAT, 0, hillTexCoords);
glDrawArrays(GL_TRIANGLE_STRIP, 0, (nHillVertices-1));
In the beginning of the game (when the "topLeftVertexX" value is small), the hills look good...

But as the game continues, the x offset value (topLeftVertexX) increases, and things start to get worse...

And near the end, it gets bad...

I think the problem is that in the beginning of the game, the "topLeftVertexX" value is small, so the result of
(topLeftVertexX)/textureSize.width
in
hillTexCoords[nHillVertices] = CGPointMake((topLeftVertexX)/textureSize.width, 0.0);
is small. However, as the game continues and the x values increase, I think the value is getting large enough to cause some sort of corruption. The textureSize is 512x512, and the "topLeftVertexX" begins at 0 at the beginning of the game, and goes up to about 200,000.
I have tried increasing the number of triangles (including adding additional strips), but that doesn't help. I also tried using @jpsarda's CCSpriteBiCurve class, and got the same result. I also tried using the glHints (such as GL_LINE_SMOOTH_HINT with GL_NICEST), but I haven't found anything that helps.
Any ideas how I might fix this?