OK, so I'm going through Nehe's tutorial, and the second lesson doesn't work. It seems to be the glTranslate() function that doesn't work. It doesn't properly translate in the z-axis, so I just get a black screen. If I set the z-translation to zero, I can see the two object up close, and properly translated in the x-axis. I'm not really sure what's wrong, and I'm using Windows with VC++ if that matters. Here's the code that should work:
Code :glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear Screen And Depth Buffer glLoadIdentity(); // Reset The Current Modelview Matrix glTranslatef(-1.5f,0.0f,-6.0f); glBegin(GL_TRIANGLES); glVertex3f( 0.0f, 1.0f, 0.0f); glVertex3f(-1.0f,-1.0f, 0.0f); glVertex3f( 1.0f,-1.0f, 0.0f); glEnd(); glTranslatef(3.0f,0.0f,0.0f); glBegin(GL_QUADS); glVertex3f(-1.0f, 1.0f, 0.0f); glVertex3f( 1.0f, 1.0f, 0.0f); glVertex3f( 1.0f,-1.0f, 0.0f); glVertex3f(-1.0f,-1.0f, 0.0f); glEnd();



