Lines Matching refs:pipe0
136 tiling->pipe0 = (VkExtent2D) {
143 if (tiling->pipe0.width < tiling->pipe0.height) {
144 tiling->pipe0.width += 1;
146 DIV_ROUND_UP(tiling->tile_count.width, tiling->pipe0.width);
148 tiling->pipe0.height += 1;
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,
172 const uint32_t pipe_x = tiling->pipe0.width * x;
173 const uint32_t pipe_y = tiling->pipe0.height * y;
176 : tiling->pipe0.width;
179 : tiling->pipe0.height;
201 uint32_t tiles_per_pipe = tiling->pipe0.width * tiling->pipe0.height;