From 768f7e83816fbfe455586b2e8d787369cdb9afd5 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Tue, 18 Oct 2011 11:31:47 +0800 Subject: [PATCH] --- scene.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scene.c b/scene.c index 79c506e..34824a4 100644 --- a/scene.c +++ b/scene.c @@ -543,8 +543,8 @@ void display() { glEnd();*/ - glTranslatef( 0.0f, 0.0f, -5.0f); // Move into the Screen 10.0 - glutSolidTeapot(1); + //glTranslatef( 0.0f, 0.0f, -5.0f); // Move into the Screen 10.0 + //glutSolidTeapot(1); /* glMatrixMode(GL_MODELVIEW); glLoadIdentity(); @@ -598,7 +598,7 @@ int main(int argc, char **argv) { glEnable(GL_DEPTH_TEST); // Enables Depth Testing glDepthFunc(GL_LEQUAL); // the type - glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Really Nice Perspective Calculations + // glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Really Nice Perspective Calculations glutReshapeFunc(windowReshape); glutDisplayFunc(display); -- 2.20.1