summaryrefslogtreecommitdiff
path: root/Makethird
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2011-04-07 19:06:11 +0100
committerTor Andersson <tor.andersson@artifex.com>2011-04-07 21:13:50 +0200
commitf5d521e184ad64893f4fc49cc867da53eff3b2b1 (patch)
treeeae3d883c10b8b74ff260869bf8f601510b3302c /Makethird
parenta9560ecb1b1140623d381ef04ede719cc9ff6819 (diff)
downloadmupdf-f5d521e184ad64893f4fc49cc867da53eff3b2b1.tar.xz
Add text antialiasing too.
Update the text rendering code to use the raster renderer in freetype rather than the smooth one. No change to the hinting methods used yet.
Diffstat (limited to 'Makethird')
-rw-r--r--Makethird3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makethird b/Makethird
index 64f85ff3..ce8e1180 100644
--- a/Makethird
+++ b/Makethird
@@ -32,6 +32,7 @@ FREETYPE_SRC := \
cff.c \
psaux.c \
psnames.c \
+ raster.c \
sfnt.c \
smooth.c \
truetype.c \
@@ -54,6 +55,8 @@ $(OUT)/ft_%.o: $(FREETYPE_DIR)/src/psaux/%.c | $(OUT)
$(CC_CMD) $(FT_CFLAGS)
$(OUT)/ft_%.o: $(FREETYPE_DIR)/src/psnames/%.c | $(OUT)
$(CC_CMD) $(FT_CFLAGS)
+$(OUT)/ft_%.o: $(FREETYPE_DIR)/src/raster/%.c | $(OUT)
+ $(CC_CMD) $(FT_CFLAGS)
$(OUT)/ft_%.o: $(FREETYPE_DIR)/src/smooth/%.c | $(OUT)
$(CC_CMD) $(FT_CFLAGS)
$(OUT)/ft_%.o: $(FREETYPE_DIR)/src/sfnt/%.c | $(OUT)