]> git.pld-linux.org Git - packages/fontconfig.git/blame - fontconfig-lcd-filter.conf
- bcond descs
[packages/fontconfig.git] / fontconfig-lcd-filter.conf
CommitLineData
ad175f83
AM
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3<fontconfig>
4 <match target="font">
5 <test name="fontformat" compare="eq">
6 <string>TrueType</string>
7 </test>
8 <edit mode="assign" name="hinting">
9 <bool>true</bool>
10 </edit>
11 <edit mode="assign" name="hintstyle">
12 <const>hintfull</const>
13 </edit>
14 <edit mode="assign" name="lcdfilter">
15 <const>lcddefault</const>
16 </edit>
17 </match>
18
19 <match target="font">
20 <test name="fontformat" compare="eq">
21 <string>CFF</string>
22 </test>
23 <edit mode="assign" name="hinting">
24 <bool>true</bool>
25 </edit>
26 <edit mode="assign" name="hintstyle">
27 <const>hintslight</const>
28 </edit>
29 <edit mode="assign" name="lcdfilter">
30 <const>lcdlight</const>
31 </edit>
32 </match>
33
34 <match target="font">
35 <test name="fontformat" compare="eq">
36 <string>Type 1</string>
37 </test>
38 <edit mode="assign" name="hinting">
39 <bool>true</bool>
40 </edit>
41 <edit mode="assign" name="hintstyle">
42 <const>hintslight</const>
43 </edit>
44 <edit mode="assign" name="lcdfilter">
45 <const>lcdlight</const>
46 </edit>
47 </match>
48</fontconfig>
This page took 0.132338 seconds and 4 git commands to generate.