(no commit message)
authorAsh Tyndall <[email protected]>
Tue, 18 Oct 2011 07:29:14 +0000 (15:29 +0800)
committerAsh Tyndall <[email protected]>
Tue, 18 Oct 2011 07:29:14 +0000 (15:29 +0800)
scene.c

diff --git a/scene.c b/scene.c
index 4c0dede..9da9a5c 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -535,8 +535,6 @@ void drawFloor() {
  */\r
 void display() {\r
   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);\r
-\r
-  glMatrixMode(GL_MODELVIEW);\r
   glLoadIdentity();\r
   gluLookAt(\r
     0.0, 8.0, 60.0,  /* eye is at (0,8,60) */\r
@@ -581,7 +579,7 @@ void display() {
  */\r
 void init() {\r
   glMatrixMode(GL_PROJECTION);\r
-  glLoadIdentity();\r
+\r
   gluPerspective(\r
      60.0,  /* field of view in degree */\r
       1.0,  /* aspect ratio */ \r
@@ -595,6 +593,8 @@ void init() {
   glLightf(GL_LIGHT0, GL_LINEAR_ATTENUATION, 0.05);\r
   glEnable(GL_LIGHT0);\r
   glEnable(GL_LIGHTING);\r
+\r
+  glMatrixMode(GL_MODELVIEW);\r
 }\r
 \r
 /**\r

UCC git Repository :: git.ucc.asn.au