-1
votes
0answers
5 views

update mtl2opengl to load multiple meshes

Ricardo Rendoncepeda created a very good openGL ES2 code which uses a script to load wavefront file with texture into ios (I use latest Blender to create the wavefront file): ...
0
votes
0answers
150 views

confused with obj/mtl files

I'm really confused with obj and mtl files and relation between them. I searched and read about these formats but couldn't understand much. I need somebody to briefly explain these format's logic ...
0
votes
1answer
128 views

binding too much textures (more than 100) causes error

I have a code that renders objects in obj and mtl format (android - opengl es 1.1) For small objects (few textures) I have no problem but when the number of textures exceeds 30-40, I receive this in ...
0
votes
1answer
317 views

Wavefront .obj .Mtl Structure

I'm trying to load a .obj File in Java with lwjgl without using any Library doing this. I created a Class to load the Model without Material and textures. That's easy. But now I want to laod the Model ...
2
votes
3answers
2k views

Troubles parsing Wavefront .obj texture coordinates

I'm coding my own .obj parser in objc for OpenGL ES 2.0 to get a better understanding on how this OpenGLES thing works. Loading the vertices and showing a model with vertex colors on it works like a ...