summaryrefslogtreecommitdiff
path: root/fitz/dev_trace.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2011-04-11 18:16:50 +0200
committerTor Andersson <tor.andersson@artifex.com>2011-04-11 18:16:50 +0200
commitc6934bd8de9d593ec51f60b7c0db9f8a2125352e (patch)
treef964a662ebe3ad5e79cd55215eedc7fd4eb05434 /fitz/dev_trace.c
parent6d2ca771127fb9186372566e5671c79c354b04b9 (diff)
downloadmupdf-c6934bd8de9d593ec51f60b7c0db9f8a2125352e.tar.xz
Add triangle caps; separate start, dash and end cap styles for XPS.
Diffstat (limited to 'fitz/dev_trace.c')
-rw-r--r--fitz/dev_trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/dev_trace.c b/fitz/dev_trace.c
index 758a18f9..9e6853b8 100644
--- a/fitz/dev_trace.c
+++ b/fitz/dev_trace.c
@@ -84,7 +84,7 @@ fz_trace_stroke_path(void *user, fz_path *path, fz_stroke_state *stroke, fz_matr
printf("<stroke_path ");
printf("linewidth=\"%g\" ", stroke->linewidth);
printf("miterlimit=\"%g\" ", stroke->miterlimit);
- printf("linecap=\"%d\" ", stroke->linecap);
+ printf("linecap=\"%d,%d,%d\" ", stroke->start_cap, stroke->dash_cap, stroke->end_cap);
printf("linejoin=\"%d\" ", stroke->linejoin);
if (stroke->dash_len)