Commit 7e23f9ce authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Disable sub-pixel antialiasing if Xrender isn't supported.

parent 14b3db99
......@@ -988,6 +988,9 @@ static int GetCacheEntry(X11DRV_PDEVICE *physDev, LFANDSIZE *plfsz)
}
wine_tsx11_unlock();
}
/* we can't support subpixel without xrender */
if (!X11DRV_XRender_Installed && entry->aa_default > AA_Grey) entry->aa_default = AA_Grey;
}
else
entry->aa_default = AA_None;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment