Lines Matching refs:region
40 vlVaRegionDefault(const VARectangle *region, vlVaSurface *surf,
43 if (region)
44 return region;
91 struct pipe_box *box, const VARectangle *region)
96 x = abs(region->x);
97 y = abs(region->y);
98 width = region->width;
99 height = region->height;
108 box->x = region->x < 0 ? -x : x;
109 box->y = region->y < 0 ? -y : y;