From ceb25b5b3453054d9f9e6ec2d830e1018fb896c0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 2 Oct 2002 18:33:53 +0000 Subject: [PATCH] Enable anti-aliasing for all font sizes. --- dlls/x11drv/xrender.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/x11drv/xrender.c b/dlls/x11drv/xrender.c index b98be490181..3900dd16bfd 100644 --- a/dlls/x11drv/xrender.c +++ b/dlls/x11drv/xrender.c @@ -322,7 +322,7 @@ static int GetCacheEntry(LFANDSIZE *plfsz) assert(entry->nrealized == 0); - if(antialias && abs(plfsz->lf.lfHeight * plfsz->xform.eM22) > 16) { + if(antialias) { pf.depth = 8; pf.direct.alphaMask = 0xff; } else { -- 2.11.4.GIT