Pretty sure that's what he means -- so instead of parsing an ASCII OBJ file at runtime and filling in your VBO, you simply memcpy your binary file straight into your VBO without any parsing or processing required at load time.You cant save stuff to VBO's before compiling.
I would just use assimp and load some file format and save the data I need in binary form which is very fast to load.
Show differencesHistory of post edits
#ActualHodgman
Posted 06 July 2012 - 12:08 AM
#1Hodgman
Posted 06 July 2012 - 12:02 AM
Pretty sure that's what he means -- so instead of parsing an ASCII OBJ file at runtime and filling in your VBO, you simply memcpy your binary file straight into your VBO without any parsing or processing required.You cant save stuff to VBO's before compiling.
I would just use assimp and load some file format and save the data I need in binary form which is very fast to load.