From 9a844442e9326c0420e814941bd471739ef7c6a6 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 16 Aug 2021 17:09:16 -0400 Subject: graphics: texture: Add support for cube maps. --- chickadee.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'chickadee.scm') 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")) -- cgit v1.2.3