From: Ash Tyndall Date: Tue, 18 Oct 2011 06:08:25 +0000 (+0800) Subject: Current project progress; adding lighting and perspective functionality X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=2c476859ea065ecf70df3f54f2b88a519a02cece;p=atyndall%2Fcits2231.git Current project progress; adding lighting and perspective functionality --- diff --git a/scene.c b/scene.c index 0488bce..d57ce23 100644 --- a/scene.c +++ b/scene.c @@ -634,7 +634,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); glutReshapeFunc(windowReshape); glutDisplayFunc(display);