mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-06 13:58:01 +02:00
Merge branch 'pr/Fix617' into 'master'
Fix wrong paginated surface size (issue #617) Closes #617 See merge request cairo/cairo!395
This commit is contained in:
commit
72cc5ae5fa
2 changed files with 4 additions and 4 deletions
|
|
@ -178,7 +178,7 @@ _cairo_surface_is_paginated (cairo_surface_t *surface);
|
||||||
|
|
||||||
cairo_private cairo_status_t
|
cairo_private cairo_status_t
|
||||||
_cairo_paginated_surface_set_size (cairo_surface_t *surface,
|
_cairo_paginated_surface_set_size (cairo_surface_t *surface,
|
||||||
int width,
|
double width,
|
||||||
int height);
|
double height);
|
||||||
|
|
||||||
#endif /* CAIRO_PAGINATED_H */
|
#endif /* CAIRO_PAGINATED_H */
|
||||||
|
|
|
||||||
|
|
@ -166,8 +166,8 @@ _cairo_paginated_surface_get_recording (cairo_surface_t *surface)
|
||||||
|
|
||||||
cairo_status_t
|
cairo_status_t
|
||||||
_cairo_paginated_surface_set_size (cairo_surface_t *surface,
|
_cairo_paginated_surface_set_size (cairo_surface_t *surface,
|
||||||
int width,
|
double width,
|
||||||
int height)
|
double height)
|
||||||
{
|
{
|
||||||
cairo_paginated_surface_t *paginated_surface;
|
cairo_paginated_surface_t *paginated_surface;
|
||||||
cairo_status_t status;
|
cairo_status_t status;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue