Texture switching
I'm working with variations of the JOGL version of the NeHe tutorial 10. I have incorporated Andrew Davison's obj loader and am rendering an object from a Display List. I am drawing the object's shape but am not getting the object's texture and materials properties. The NeHe tutorial uses textures loaded from a png file when rendering the walls, floors and ceilings. The object I am drawing after the topography has been created does not display it's textures. When I attempt to turn off the currently bound texture with gl.glBindTexture(GL.GL_TEXTURE_2D, 0); .. I see the object without any color at all, it's white. How do I get the gl to disregard the textures from drawing the topography and have it render the object in the display list with the materials defined in the mtl file that goes with the obj file. Note that the same object is rendered OK in a scene where there hasn't been any bound textures.
Thanks for any hints ... doktat

