Lines Matching refs:region
60 RenderRegion region; in bounds() local
63 region.x = bbox.min.x > 0 ? bbox.min.x : 0; in bounds()
64 region.y = bbox.min.y > 0 ? bbox.min.y : 0; in bounds()
65 region.w = bbox.max.x - region.x; in bounds()
66 region.h = bbox.max.y - region.y; in bounds()
67 if (region.w < 0) region.w = 0; in bounds()
68 if (region.h < 0) region.h = 0; in bounds()
70 return region; in bounds()
502 RenderRegion SwRenderer::region(RenderData data) in region() function in SwRenderer
589 RenderCompositor* SwRenderer::target(const RenderRegion& region, ColorSpace cs) in target() argument
591 auto x = region.x; in target()
592 auto y = region.y; in target()
593 auto w = region.w; in target()
594 auto h = region.h; in target()