diff options
Diffstat (limited to 'fitz/dev_trace.c')
-rw-r--r-- | fitz/dev_trace.c | 2 |
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) |