mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 11:17:58 +02:00
[win32] regression with win32 glyph y-offsets (mozbug#365021)
This commit is contained in:
parent
0231d18a57
commit
8ff70d6b91
1 changed files with 1 additions and 1 deletions
|
|
@ -1581,7 +1581,7 @@ _cairo_win32_surface_show_glyphs (void *surface,
|
|||
next_logical_y = _cairo_lround (next_user_y);
|
||||
|
||||
dxy_buf[j] = _cairo_lround ((next_logical_x - logical_x) * WIN32_FONT_LOGICAL_SCALE);
|
||||
dxy_buf[j+1] = _cairo_lround ((logical_y - start_y) * WIN32_FONT_LOGICAL_SCALE);
|
||||
dxy_buf[j+1] = _cairo_lround ((next_logical_y - logical_y) * WIN32_FONT_LOGICAL_SCALE);
|
||||
|
||||
logical_x = next_logical_x;
|
||||
logical_y = next_logical_y;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue