Home
last modified time | relevance | path

Searched refs:dest_rects (Results 1 – 1 of 1) sorted by relevance

/third_party/weston/libweston/
Dcompositor.c744 pixman_box32_t *src_rects, *dest_rects; in weston_matrix_transform_region() local
748 dest_rects = malloc(nrects * sizeof(*dest_rects)); in weston_matrix_transform_region()
749 if (!dest_rects) in weston_matrix_transform_region()
768 dest_rects[i].x1 = floor(vec1.f[0]); in weston_matrix_transform_region()
769 dest_rects[i].x2 = ceil(vec2.f[0]); in weston_matrix_transform_region()
771 dest_rects[i].x1 = floor(vec2.f[0]); in weston_matrix_transform_region()
772 dest_rects[i].x2 = ceil(vec1.f[0]); in weston_matrix_transform_region()
776 dest_rects[i].y1 = floor(vec1.f[1]); in weston_matrix_transform_region()
777 dest_rects[i].y2 = ceil(vec2.f[1]); in weston_matrix_transform_region()
779 dest_rects[i].y1 = floor(vec2.f[1]); in weston_matrix_transform_region()
[all …]