Why is my OBJ parser rendering meshes like this?

I haven’t downloaded your project. What people mostly struggle with when writing OBJ import code for rendering with OpenGL is the indices. And as @ratched_freak also suspects in his comment, that’s very consistent with the visual appearance of your cube. The OBJ format uses separate indices for positions, normals, and texture coordinates. For OpenGL rendering, … Read more