From 7c8875683544f2111e2f4b41d50151243ad2fec2 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 28 Jun 2014 16:11:01 -0400 Subject: Use linear scaling filter for rendered text. --- sly/font.scm | 4 ++-- 1 file 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) -- cgit v1.2.3