Lines Matching refs:loc_start
1757 * @loc_start: The location corresponding to the start of the region.
1760 * As we are assuming that @loc_start and @loc_end represent a sequential
1767 const struct vmw_surface_loc *loc_start,
1771 SVGA3dBox *box = &dirty->boxes[loc_start->sub_resource];
1772 u32 mip = loc_start->sub_resource % cache->num_mip_levels;
1776 if (WARN_ON(loc_start->sub_resource >= dirty->num_subres))
1779 if (box->d == 0 || box->z > loc_start->z)
1780 box->z = loc_start->z;
1784 if (loc_start->z + 1 == loc_end->z) {
1786 if (box->h == 0 || box->y > loc_start->y)
1787 box->y = loc_start->y;
1791 if (loc_start->y + 1 == loc_end->y) {
1793 if (box->w == 0 || box->x > loc_start->x)
1794 box->x = loc_start->x;