]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Mon, 16 May 2011 06:13:51 +0000 (06:13 +0000)
committerjsancho <devnull@localhost>
Mon, 16 May 2011 06:13:51 +0000 (06:13 +0000)
src/gacela.c
src/gacela.scm

index 42bfdf062ab1f0788c04a34945cf6266d39093e3..ad85b740a14a95e75726ef0562964609e3e122cc 100644 (file)
@@ -31,7 +31,7 @@ register_functions (void* data)
 void
 load_scheme_files (char *path)
 {
-  //  load_scheme_file (path, "gacela.scm");
+  load_scheme_file (path, "gacela.scm");
 }
 
 void
index 38b57f01988a5eaa4642132db74711ca3b80a65c..54691562bfe46ca5fa977c3111e617ef384bc0a5 100644 (file)
   (glEnable GL_LIGHTING))
 
 (define (resize-screen-GL width height)
-  (glViewPort 0 0 width height)
+  (glViewport 0 0 width height)
   (glMatrixMode GL_PROJECTION)
   (glLoadIdentity)
   (cond ((3d-mode?) (let ((ratio (if (= height 0) width (/ width height))))
                      (gluPerspective 45 ratio 0.1 100))) ;0.1
-       (else (let* ((w (/ width 2)) (-w (neg w)) (h (/ height 2)) (-h (neg h)))
-               (glOrtho -w w -h h 0 1))))
+       (else (let* ((w (/ width 2)) (h (/ height 2)))
+               (glOrtho (- w) w (- h) h 0 1))))
   (glMatrixMode GL_MODELVIEW)
   (glLoadIdentity)
   #t)