diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-06-06 21:17:03 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-06-06 21:17:03 +0200 |
commit | cb6f8bb32bc36b46e41eada10ed0ce72af1c8cac (patch) | |
tree | d252818df2f0eed7072b69e76ee17170cdad7a09 /world/node_misc1.c | |
parent | 6c6c6faca9d763db6bc8fe756feda034cd2193d5 (diff) | |
download | mupdf-cb6f8bb32bc36b46e41eada10ed0ce72af1c8cac.tar.xz |
rename fz_colornode to fz_solidnode
Diffstat (limited to 'world/node_misc1.c')
-rw-r--r-- | world/node_misc1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/node_misc1.c b/world/node_misc1.c index 7ddd9167..53dfd873 100644 --- a/world/node_misc1.c +++ b/world/node_misc1.c @@ -12,7 +12,7 @@ fz_rect fz_boundtransformnode(fz_transformnode* node, fz_matrix ctm); fz_rect fz_boundovernode(fz_overnode* node, fz_matrix ctm); fz_rect fz_boundmasknode(fz_masknode* node, fz_matrix ctm); fz_rect fz_boundblendnode(fz_blendnode* node, fz_matrix ctm); -fz_rect fz_boundcolornode(fz_colornode* node, fz_matrix ctm); +fz_rect fz_boundsolidnode(fz_solidnode* node, fz_matrix ctm); fz_rect fz_boundpathnode(fz_pathnode* node, fz_matrix ctm); fz_rect fz_boundtextnode(fz_textnode* node, fz_matrix ctm); fz_rect fz_boundimagenode(fz_imagenode* node, fz_matrix ctm); @@ -83,7 +83,7 @@ fz_boundnode(fz_node *node, fz_matrix ctm) case FZ_NBLEND: return fz_boundblendnode((fz_blendnode *) node, ctm); case FZ_NCOLOR: - return fz_boundcolornode((fz_colornode *) node, ctm); + return fz_boundsolidnode((fz_solidnode *) node, ctm); case FZ_NPATH: return fz_boundpathnode((fz_pathnode *) node, ctm); case FZ_NTEXT: @@ -125,7 +125,7 @@ fz_isblendnode(fz_node *node) } int -fz_iscolornode(fz_node *node) +fz_issolidnode(fz_node *node) { return node ? node->kind == FZ_NCOLOR : 0; } |