Lines Matching refs:tile_count
76 tiling->tile_count = (VkExtent2D) {
93 tiling->tile_count.width = 2;
94 tiling->tile_count.height = 2;
101 tiling->tile_count.width++;
103 util_align_npot(DIV_ROUND_UP(fb->width, tiling->tile_count.width), tile_align_w);
108 tiling->tile_count.height++;
110 util_align_npot(DIV_ROUND_UP(fb->height, tiling->tile_count.height), tile_align_h);
116 tiling->tile_count.width++;
118 util_align_npot(DIV_ROUND_UP(fb->width, tiling->tile_count.width), tile_align_w);
122 tiling->tile_count.height++;
124 align(DIV_ROUND_UP(fb->height, tiling->tile_count.height), tile_align_h);
140 tiling->pipe_count = tiling->tile_count;
146 DIV_ROUND_UP(tiling->tile_count.width, tiling->pipe0.width);
150 DIV_ROUND_UP(tiling->tile_count.height, tiling->pipe0.height);
163 .width = (tiling->tile_count.width - 1) % tiling->pipe0.width + 1,
164 .height = (tiling->tile_count.height - 1) % tiling->pipe0.height + 1,
211 tiling->binning = (tiling->tile_count.width * tiling->tile_count.height) > 2;