diff options
author | marha <marha@users.sourceforge.net> | 2012-02-24 08:16:00 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-02-24 08:16:00 +0100 |
commit | 5fb4fb602bde5140dcea45464e3b70a49078ad2e (patch) | |
tree | 24db226b5f69e9a8c9c3aea11e7a27a82620fa2c /fontconfig/conf.d | |
parent | 6baac61e6ca9cd314e689dfe7f84771aad08c66e (diff) | |
download | vcxsrv-5fb4fb602bde5140dcea45464e3b70a49078ad2e.tar.gz vcxsrv-5fb4fb602bde5140dcea45464e3b70a49078ad2e.tar.bz2 vcxsrv-5fb4fb602bde5140dcea45464e3b70a49078ad2e.zip |
fontconfig libX11 pixman xserver git update 24 Feb 2012
Diffstat (limited to 'fontconfig/conf.d')
-rw-r--r-- | fontconfig/conf.d/11-lcdfilter-default.conf | 10 | ||||
-rw-r--r-- | fontconfig/conf.d/11-lcdfilter-legacy.conf | 10 | ||||
-rw-r--r-- | fontconfig/conf.d/11-lcdfilter-light.conf | 10 | ||||
-rw-r--r-- | fontconfig/conf.d/Makefile.am | 3 |
4 files changed, 33 insertions, 0 deletions
diff --git a/fontconfig/conf.d/11-lcdfilter-default.conf b/fontconfig/conf.d/11-lcdfilter-default.conf new file mode 100644 index 000000000..040a4ac83 --- /dev/null +++ b/fontconfig/conf.d/11-lcdfilter-default.conf @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> +<!-- Use lcddefault as default for LCD filter --> + <match target="font"> + <edit mode="assign" name="lcdfilter"> + <const>lcddefault</const> + </edit> + </match> +</fontconfig> diff --git a/fontconfig/conf.d/11-lcdfilter-legacy.conf b/fontconfig/conf.d/11-lcdfilter-legacy.conf new file mode 100644 index 000000000..218585ce3 --- /dev/null +++ b/fontconfig/conf.d/11-lcdfilter-legacy.conf @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> +<!-- Use lcdlegacy as default for LCD filter --> + <match target="font"> + <edit mode="assign" name="lcdfilter"> + <const>lcdlegacy</const> + </edit> + </match> +</fontconfig> diff --git a/fontconfig/conf.d/11-lcdfilter-light.conf b/fontconfig/conf.d/11-lcdfilter-light.conf new file mode 100644 index 000000000..d38a66ef0 --- /dev/null +++ b/fontconfig/conf.d/11-lcdfilter-light.conf @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> +<!-- Use lcdlight as default for LCD filter --> + <match target="font"> + <edit mode="assign" name="lcdfilter"> + <const>lcdlight</const> + </edit> + </match> +</fontconfig> diff --git a/fontconfig/conf.d/Makefile.am b/fontconfig/conf.d/Makefile.am index 3f5255fad..d122a8ff0 100644 --- a/fontconfig/conf.d/Makefile.am +++ b/fontconfig/conf.d/Makefile.am @@ -32,6 +32,9 @@ CONF_FILES = \ 10-sub-pixel-vbgr.conf \ 10-sub-pixel-vrgb.conf \ 10-unhinted.conf \ + 11-lcdfilter-default.conf \ + 11-lcdfilter-legacy.conf \ + 11-lcdfilter-light.conf \ 20-fix-globaladvance.conf \ 20-unhint-small-vera.conf \ 25-unhint-nonlatin.conf \ |