summaryrefslogtreecommitdiff
path: root/chickadee.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-08-16 17:09:16 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-08-16 17:10:50 -0400
commit9a844442e9326c0420e814941bd471739ef7c6a6 (patch)
tree7fe3824194a86fb3ff5333711cc204dd63d426ba /chickadee.scm
parentef9c8fe1966fa861758c72f1990751d330dc9b35 (diff)
graphics: texture: Add support for cube maps.
Diffstat (limited to 'chickadee.scm')
-rw-r--r--chickadee.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/chickadee.scm b/chickadee.scm
index 8adc313..bffb83c 100644
--- a/chickadee.scm
+++ b/chickadee.scm
@@ -401,6 +401,8 @@ border is disabled, otherwise it is enabled.")
(current-error-port))))
;; Turn off multisampling by default.
(gl-disable (version-1-3 multisample))
+ ;; Enable seamless cube maps.
+ (gl-enable (version-3-2 texture-cube-map-seamless))
(load)
(sdl2:load-game-controller-mappings!
(scope-datadir "gamecontrollerdb.txt"))