summaryrefslogtreecommitdiff
path: root/draw/draw_blend.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-03-13 13:57:11 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-03-13 13:57:11 +0100
commit48652e529ed1c0ae23cfd45f14d9655ad2849c89 (patch)
treea34e7562a30f3a7e42070f1f5a8763f6d1d608cb /draw/draw_blend.c
parent9cbfb766564d0e80d259e3e0a919d72a75bbb6ee (diff)
downloadmupdf-48652e529ed1c0ae23cfd45f14d9655ad2849c89.tar.xz
Rename some functions and accessors to be more consistent.
Debug printing functions: debug -> print. Accessors: get noun attribute -> noun attribute. Find -> lookup when the returned value is not reference counted. pixmap_with_rect -> pixmap_with_bbox. We are reserving the word "find" to mean lookups that give ownership of objects to the caller. Lookup is used in other places where the ownership is not transferred, or simple values are returned. The rename is done by the sed script in scripts/rename3.sed
Diffstat (limited to 'draw/draw_blend.c')
-rw-r--r--draw/draw_blend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/draw_blend.c b/draw/draw_blend.c
index 3e81568f..904de768 100644
--- a/draw/draw_blend.c
+++ b/draw/draw_blend.c
@@ -24,7 +24,7 @@ static const char *fz_blendmode_names[] =
"Luminosity",
};
-int fz_find_blendmode(char *name)
+int fz_lookup_blendmode(char *name)
{
int i;
for (i = 0; i < nelem(fz_blendmode_names); i++)