diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-04-04 08:58:34 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-04-04 08:58:34 +0200 |
commit | 0ba6f06f3e2cebf7cf519ce38dc8fdfe34734603 (patch) | |
tree | e70c5004059dbc4d8fdd245832e441b930fd86cc /fitz/node_misc2.c | |
parent | fb2db10b9760e7692ef16b4cf70bfae188b836af (diff) | |
download | mupdf-0ba6f06f3e2cebf7cf519ce38dc8fdfe34734603.tar.xz |
rename rect fields to x0 y0 x1 y1
Diffstat (limited to 'fitz/node_misc2.c')
-rw-r--r-- | fitz/node_misc2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fitz/node_misc2.c b/fitz/node_misc2.c index cd4595f4..5382273e 100644 --- a/fitz/node_misc2.c +++ b/fitz/node_misc2.c @@ -297,10 +297,10 @@ fz_rect fz_boundimagenode(fz_imagenode *node, fz_matrix ctm) { fz_rect bbox; - bbox.min.x = 0; - bbox.min.y = 0; - bbox.max.x = 1; - bbox.max.y = 1; + bbox.x0 = 0; + bbox.y0 = 0; + bbox.x1 = 1; + bbox.y1 = 1; return fz_transformaabb(ctm, bbox); } |