summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-12-15 15:51:35 +0100
committerTor Andersson <tor.andersson@artifex.com>2015-12-18 15:32:14 +0100
commit02d5b2280db2846e4a683944819eb395ab15b8ce (patch)
tree52e0616ea0d3a01ba9bd1943c23b72965b17e66e /include
parented1d49f58750b204ddf7e2fb686d666e819f41e3 (diff)
downloadmupdf-02d5b2280db2846e4a683944819eb395ab15b8ce.tar.xz
Rename fz_halftone_pixmap to fz_new_bitmap_from_pixmap.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mupdf/fitz/bitmap.h b/include/mupdf/fitz/bitmap.h
index 438bfbe4..feb9afa6 100644
--- a/include/mupdf/fitz/bitmap.h
+++ b/include/mupdf/fitz/bitmap.h
@@ -41,7 +41,7 @@ void fz_drop_bitmap(fz_context *ctx, fz_bitmap *bit);
typedef struct fz_halftone_s fz_halftone;
/*
- fz_halftone_pixmap: Make a bitmap from a pixmap and a halftone.
+ fz_new_bitmap_from_pixmap: Make a bitmap from a pixmap and a halftone.
pix: The pixmap to generate from. Currently must be a single color
component + alpha (where the alpha is assumed to be solid).
@@ -51,7 +51,7 @@ typedef struct fz_halftone_s fz_halftone;
Returns the resultant bitmap. Throws exceptions in the case of
failure to allocate.
*/
-fz_bitmap *fz_halftone_pixmap(fz_context *ctx, fz_pixmap *pix, fz_halftone *ht);
+fz_bitmap *fz_new_bitmap_from_pixmap(fz_context *ctx, fz_pixmap *pix, fz_halftone *ht);
struct fz_bitmap_s
{