Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_gmem.c123 uint32_t tpp_x, tpp_y; in calculate_tiles() local
216 tpp_x = tpp_y = 1; in calculate_tiles()
217 while (div_round_up(nbins_y, tpp_y) > 8) in calculate_tiles()
218 tpp_y += 2; in calculate_tiles()
219 while ((div_round_up(nbins_y, tpp_y) * in calculate_tiles()
224 gmem->maxph = tpp_y; in calculate_tiles()
233 yoff += tpp_y; in calculate_tiles()
243 pipe->h = MIN2(tpp_y, nbins_y - yoff); in calculate_tiles()
254 printf("%dx%d ... tpp=%dx%d\n", nbins_x, nbins_y, tpp_x, tpp_y); in calculate_tiles()
281 p = ((i / tpp_y) * div_round_up(nbins_x, tpp_x)) + (j / tpp_x); in calculate_tiles()