From 2862643e844de67083b293453cabaa63c105c061 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak <dos@dosowisko.net> Date: Sun, 17 Sep 2023 02:33:31 +0200 Subject: [PATCH] ctx_config: Set CTX_RASTERIZER_AA to 5 (CTX_ANTIALIAS_GOOD) Significantly speeds text rendering up with no noticeable loss of quality (at least to my eye). --- components/ctx/ctx_config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/components/ctx/ctx_config.h b/components/ctx/ctx_config.h index 71fdb4f1a4..8f703b800c 100644 --- a/components/ctx/ctx_config.h +++ b/components/ctx/ctx_config.h @@ -31,6 +31,7 @@ #define CTX_LIMIT_FORMATS 1 #define CTX_32BIT_SEGMENTS 0 #define CTX_RASTERIZER 1 +#define CTX_RASTERIZER_AA 5 #define CTX_ENABLE_RGB565 1 #define CTX_ENABLE_RGB565_BYTESWAPPED 1 #define CTX_COMPOSITING_GROUPS 0 -- GitLab