mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-02-15 22:00:32 +01:00
Fix typo that was resulting in device glyph_extents of INT16_MAX in some cases.
This commit is contained in:
parent
2041db9196
commit
f1db013547
1 changed files with 1 additions and 1 deletions
|
|
@ -834,7 +834,7 @@ _cairo_scaled_font_glyph_device_extents (cairo_scaled_font_t *scaled_font,
|
|||
cairo_status_t status = CAIRO_STATUS_SUCCESS;
|
||||
int i;
|
||||
int min_x = INT16_MAX, max_x = INT16_MIN;
|
||||
int min_y = INT16_MAX, max_y = INT16_MAX;
|
||||
int min_y = INT16_MAX, max_y = INT16_MIN;
|
||||
|
||||
if (scaled_font->status)
|
||||
return scaled_font->status;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue