From a94c1e2ec02ba03c8f7c4dee751f2eded3203b8f Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Tue, 18 Oct 2011 11:44:27 +0800 Subject: [PATCH] --- scene.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scene.c b/scene.c index 349ccbf..638683e 100644 --- a/scene.c +++ b/scene.c @@ -632,17 +632,17 @@ int main(int argc, char **argv) { glutInitWindowSize(500, 500); glutCreateWindow("Scene Editor"); - /*glShadeModel(GL_SMOOTH); // Enables Smooth Shading - glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // Black Background - glClearDepth(1.0f); // Depth Buffer Setup - glEnable(GL_DEPTH_TEST); // Enables Depth Testing - glDepthFunc(GL_LEQUAL); // the type + //glShadeModel(GL_SMOOTH); // Enables Smooth Shading + //glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // Black Background + //glClearDepth(1.0f); // Depth Buffer Setup + //glEnable(GL_DEPTH_TEST); // Enables Depth Testing + //glDepthFunc(GL_LEQUAL); // the type // glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Really Nice Perspective Calculations glutReshapeFunc(windowReshape); glutDisplayFunc(display); - glutMouseFunc(mouse);*/ + glutMouseFunc(mouse); makeMenu(); -- 2.20.1