Loading 3d models using sdl

hi,
is there any support in sdl to load 3d models in opengl, created using
3d studio max (as .obj file)? till now i have been using glm to load
models.

Abhay Gupta writes:

hi,
is there any support in sdl to load 3d models in opengl, created using
3d studio max (as .obj file)? till now i have been using glm to load
models.

No, but .obj format is very easy to read since it’s already in the
format you want for openGL.–
Alberto

Actually look at ASSIMP lib to load many file formats. No need to
re-invent the wheel!
http://assimp.sourceforge.net/On 3/11/2011 10:54 AM, Alberto Luaces wrote:

Abhay Gupta writes:

hi,
is there any support in sdl to load 3d models in opengl, created using
3d studio max (as .obj file)? till now i have been using glm to load
models.
No, but .obj format is very easy to read since it’s already in the
format you want for openGL.