summaryrefslogtreecommitdiff
path: root/pdf/pdf_path.c
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/pdf_path.c')
-rw-r--r--pdf/pdf_path.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pdf/pdf_path.c b/pdf/pdf_path.c
index a116501a4..ef6f1328d 100644
--- a/pdf/pdf_path.c
+++ b/pdf/pdf_path.c
@@ -123,7 +123,7 @@ static int pdfi_fill_inner(pdf_context *ctx, bool use_eofill)
code = pdfi_gsave(ctx);
if (code < 0) goto exit;
- code = pdfi_trans_setup(ctx, &state, TRANSPARENCY_Caller_Fill);
+ code = pdfi_trans_setup(ctx, &state, NULL, TRANSPARENCY_Caller_Fill);
if (code == 0) {
if (use_eofill)
code = gs_eofill(ctx->pgs);
@@ -168,7 +168,7 @@ int pdfi_stroke(pdf_context *ctx)
if (code < 0) goto exit;
gs_swapcolors_quick(ctx->pgs);
- code = pdfi_trans_setup(ctx, &state, TRANSPARENCY_Caller_Stroke);
+ code = pdfi_trans_setup(ctx, &state, NULL, TRANSPARENCY_Caller_Stroke);
if (code == 0) {
code = gs_stroke(ctx->pgs);
code1 = pdfi_trans_teardown(ctx, &state);
@@ -381,7 +381,7 @@ static int pdfi_B_inner(pdf_context *ctx, bool use_eofill)
code = pdfi_gsave(ctx);
if (code < 0) goto exit;
- code = pdfi_trans_setup(ctx, &state, TRANSPARENCY_Caller_FillStroke);
+ code = pdfi_trans_setup(ctx, &state, NULL, TRANSPARENCY_Caller_FillStroke);
if (code == 0) {
if (use_eofill)
code = gs_eofillstroke(ctx->pgs, &code1);