diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-09-07 17:34:28 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-09-07 17:34:28 -0400 |
commit | 83270f809d12ffe24b27473a2898d0502c99cc1c (patch) | |
tree | 54514178f990b249e53c16e3c937b49715d15795 | |
parent | 5da38baa24b69888fddd71adf79b9984e60e0cef (diff) |
render: asset: Don't use mipmaps for now.
Chickadee doesn't support them yet.
-rw-r--r-- | chickadee/render/asset.scm | 10 |
1 files 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) |