summaryrefslogtreecommitdiff
path: root/source/fitz/glyph.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/glyph.c')
-rw-r--r--source/fitz/glyph.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/source/fitz/glyph.c b/source/fitz/glyph.c
index 4c22b94b..f3634df1 100644
--- a/source/fitz/glyph.c
+++ b/source/fitz/glyph.c
@@ -24,23 +24,25 @@ fz_drop_glyph_imp(fz_context *ctx, fz_storable *glyph_)
fz_free(ctx, glyph);
}
-fz_irect *
-fz_glyph_bbox(fz_context *ctx, fz_glyph *glyph, fz_irect *bbox)
+fz_irect
+fz_glyph_bbox(fz_context *ctx, fz_glyph *glyph)
{
- bbox->x0 = glyph->x;
- bbox->y0 = glyph->y;
- bbox->x1 = glyph->x + glyph->w;
- bbox->y1 = glyph->y + glyph->h;
+ fz_irect bbox;
+ bbox.x0 = glyph->x;
+ bbox.y0 = glyph->y;
+ bbox.x1 = glyph->x + glyph->w;
+ bbox.y1 = glyph->y + glyph->h;
return bbox;
}
-fz_irect *
-fz_glyph_bbox_no_ctx(fz_glyph *glyph, fz_irect *bbox)
+fz_irect
+fz_glyph_bbox_no_ctx(fz_glyph *glyph)
{
- bbox->x0 = glyph->x;
- bbox->y0 = glyph->y;
- bbox->x1 = glyph->x + glyph->w;
- bbox->y1 = glyph->y + glyph->h;
+ fz_irect bbox;
+ bbox.x0 = glyph->x;
+ bbox.y0 = glyph->y;
+ bbox.x1 = glyph->x + glyph->w;
+ bbox.y1 = glyph->y + glyph->h;
return bbox;
}