diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-01-21 19:29:46 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-01-26 17:12:02 -0500 |
commit | aa45ad29efab50318d38bfd096b07021c4c7bde6 (patch) | |
tree | cb4f2347e94aa257a7906945bb5b1c389a22c93b /examples/model.scm | |
parent | 578de9a16d58385f4e9926c7c0effae6127c9270 (diff) |
graphics: Rewrite rendering engine.
Diffstat (limited to 'examples/model.scm')
-rw-r--r-- | examples/model.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/model.scm b/examples/model.scm index f7ef9f7..98a7deb 100644 --- a/examples/model.scm +++ b/examples/model.scm @@ -2,7 +2,7 @@ (chickadee math) (chickadee math matrix) (chickadee math vector) - (chickadee graphics) + (chickadee graphics engine) (chickadee graphics model) (chickadee graphics font) (ice-9 format)) @@ -27,8 +27,7 @@ (define (draw alpha) (with-projection projection - (with-depth-test #t - (draw-model model model-matrix view-matrix))) + (draw-model model model-matrix view-matrix)) (draw-text text text-position)) (define (update dt) |