Hi, When I make sub-surface by cairo_surface_create_for_rectangle() I got nil surface on special use case. inside of cairo_surface_create_for_rectangle(cairo_surface_t *target, double x, double y, double width, double height) cairo changes argument ,double to integer, like below. surface->extents.x = ceil (x); surface->extents.y = ceil (y); surface->extents.width = floor (x + width) - surface->extents.x; surface->extents.height = floor (y + height) - surface->extents.y; But if I put the x = 0.2, width = 0.7 on cairo_surface_create_for_rectangle() the width of surface is assigned by -1. surface->extents.x = 1; //ceil(0.2) == 1 surface->extents.width = -1; //floor(0.2+0.7) - 1 == 0 - 1 == -1 It looks like a cairo's bug Thanks
-- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/cairo/cairo/issues/226.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.