iPhone and Vertex Buffer Objects

Posted by dancer on Stack Overflow See other posts from Stack Overflow or by dancer
Published on 2010-05-03T21:23:08Z Indexed on 2010/05/03 21:28 UTC
Read the original article Hit count: 255

Filed under:
|
|

I've just started playing around with opengl es on the iphone the past couple of weeks and i'm looking at refactoring some of my code to use Vertex Buffer Objects(VBO). Before I do though I would like to make sure it'll be worth it. The problem is that afaik the only reason you create VBO's is to shift a chunk of data onto the graphics card so that it doesn't need to be retrieved from system ram when it's used. The iPhone however does not have any dedicated ram that I'm aware of so i'm struggling to see why I would benefit at all from using VBO's. I have seen talk around the internet with conflicting opinions and apple certainly want dev's to use it so there's probably still a reason to use them but just wanted to see if anyone on SO had an opinion to add.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about opengl-es