Open GL ES 1.1 and iPhone games
Posted
by MrDatabase
on Stack Overflow
See other posts from Stack Overflow
or by MrDatabase
Published on 2010-05-27T03:36:32Z
Indexed on
2010/05/27
3:41 UTC
Read the original article
Hit count: 228
Will iPhone games that draw 2D textures like this:
glPushMatrix();
glTranslatef(xLoc, yLoc, 0);
[myTexturePointer drawAtPoint:CGPointZero];
glPopMatrix();
work with newer iPhones (that support OpenGL ES 2.0)? I'm asking because I just learned OpenGL ES 2.0 doesn't support glPushMatrix etc.
Cheers!
© Stack Overflow or respective owner