summaryrefslogtreecommitdiff
path: root/source/fitz/draw-mesh.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2018-09-13 19:23:40 +0800
committerSebastian Rasmussen <sebras@gmail.com>2018-09-13 19:24:11 +0800
commita4e5e2ca509ce9e72dea55e4f88706d977355181 (patch)
tree515e62f7cf58ecfa25cf6c74f2eace26a67a1562 /source/fitz/draw-mesh.c
parent5c276e31cb6d65b6f2c24624c63749aa412a0bce (diff)
downloadmupdf-a4e5e2ca509ce9e72dea55e4f88706d977355181.tar.xz
Make naming of effective overprint argument consistent.
Diffstat (limited to 'source/fitz/draw-mesh.c')
-rw-r--r--source/fitz/draw-mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/draw-mesh.c b/source/fitz/draw-mesh.c
index adc9aa1f..039009d2 100644
--- a/source/fitz/draw-mesh.c
+++ b/source/fitz/draw-mesh.c
@@ -211,7 +211,7 @@ do_paint_tri(fz_context *ctx, void *arg, fz_vertex *av, fz_vertex *bv, fz_vertex
}
void
-fz_paint_shade(fz_context *ctx, fz_shade *shade, fz_colorspace *colorspace, fz_matrix ctm, fz_pixmap *dest, const fz_color_params *color_params, fz_irect bbox, const fz_overprint *op)
+fz_paint_shade(fz_context *ctx, fz_shade *shade, fz_colorspace *colorspace, fz_matrix ctm, fz_pixmap *dest, const fz_color_params *color_params, fz_irect bbox, const fz_overprint *eop)
{
unsigned char clut[256][FZ_MAX_COLORS];
fz_pixmap *temp = NULL;
@@ -342,7 +342,7 @@ fz_paint_shade(fz_context *ctx, fz_shade *shade, fz_colorspace *colorspace, fz_m
s += temp->stride - temp->w * temp->n;
}
}
- fz_paint_pixmap_with_overprint(dest, conv, op);
+ fz_paint_pixmap_with_overprint(dest, conv, eop);
}
}
fz_always(ctx)