From 83270f809d12ffe24b27473a2898d0502c99cc1c Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 7 Sep 2018 17:34:28 -0400 Subject: render: asset: Don't use mipmaps for now. Chickadee doesn't support them yet. --- chickadee/render/asset.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/chickadee/render/asset.scm b/chickadee/render/asset.scm index 91bdee2..bb774e8 100644 --- a/chickadee/render/asset.scm +++ b/chickadee/render/asset.scm @@ -247,10 +247,12 @@ (match n (9728 'nearest) ((or #f 9729) 'linear) - (9984 'nearest-mipmap-nearest) - (9985 'linear-mipmap-nearest) - (9986 'nearest-mipmap-linear) - (9987 'linear-mipmap-linear))) + ;; TODO: Support mip-mapping + ;; (9984 'nearest-mipmap-nearest) + ;; (9985 'linear-mipmap-nearest) + ;; (9986 'nearest-mipmap-linear) + ;; (9987 'linear-mipmap-linear) + (_ 'linear))) (define (texture-wrap n) (match n (10496 'clamp) -- cgit v1.2.3