diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-06-28 16:11:01 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-08-25 19:33:07 -0400 |
commit | 7c8875683544f2111e2f4b41d50151243ad2fec2 (patch) | |
tree | 1392067215590e93b0a32821a734f506dba0e175 | |
parent | 5361a105fdcb097def20caa980b1956973810b94 (diff) |
Use linear scaling filter for rendered text.
-rw-r--r-- | sly/font.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sly/font.scm b/sly/font.scm index db9c9fd..c2e57b6 100644 --- a/sly/font.scm +++ b/sly/font.scm @@ -93,10 +93,10 @@ argument with a default value of 12." (with-gl-bind-texture (texture-target texture-2d) texture-id (gl-texture-parameter (texture-target texture-2d) (texture-parameter-name texture-min-filter) - (texture-min-filter nearest)) + (texture-min-filter linear)) (gl-texture-parameter (texture-target texture-2d) (texture-parameter-name texture-mag-filter) - (texture-mag-filter nearest)) + (texture-mag-filter linear)) (gl-texture-image-2d (texture-target texture-2d) 0 (pixel-format rgba) |