In the book "Mobile 3D Graphics with OpenGL ES and M3G" the authors say that choosing the correct vertex data format will have huge impact on performance. They recommend GL_SHORT for most vertex data. Does this also apply for iPhone OS?

link|improve this question

58% accept rate
feedback

1 Answer

all of the example code I've seen uses GL_FLOAT; in general with 3D stuff you're doing enough math that integer formats aren't very convenient.

Apple's OpenGLES Performance Tech Note recommends using floating point.

They also talk about how to order your per-vertex data for best performance; Jeff LaMarche has an excellent article about how to do that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.