Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_tiling.c148 struct pipe_box partial_box; in vc4_t_image_helper() local
152 partial_box.y = y & (stile_h - 1); in vc4_t_image_helper()
153 partial_box.height = MIN2(y2 - y, stile_h - partial_box.y); in vc4_t_image_helper()
157 partial_box.x = x & (stile_w - 1); in vc4_t_image_helper()
158 partial_box.width = MIN2(x2 - x, in vc4_t_image_helper()
159 stile_w - partial_box.x); in vc4_t_image_helper()
174 cpp, &partial_box); in vc4_t_image_helper()
180 cpp, &partial_box); in vc4_t_image_helper()
183 cpu_offset += partial_box.width * cpp; in vc4_t_image_helper()
185 cpu += cpu_stride * partial_box.height; in vc4_t_image_helper()