Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/auxiliary/util/
Du_framebuffer.c258 unsigned row, i, shift, grid_width, grid_height; in util_sample_locations_flip_y() local
263 screen->get_sample_pixel_grid(screen, samples, &grid_width, &grid_height); in util_sample_locations_flip_y()
265 shift = fb_height % grid_height; in util_sample_locations_flip_y()
267 for (row = 0; row < grid_height; row++) { in util_sample_locations_flip_y()
270 unsigned dest_row = grid_height - row - 1; in util_sample_locations_flip_y()
272 dest_row = (dest_row - shift) % grid_height; in util_sample_locations_flip_y()
277 memcpy(locations, new_locations, grid_width * grid_height * samples); in util_sample_locations_flip_y()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_atom_msaa.c53 unsigned grid_width, grid_height, size, pixel, sample_index; in update_sample_locations() local
61 &grid_width, &grid_height); in update_sample_locations()
62 size = grid_width * grid_height * samples; in update_sample_locations()
69 grid_height > MAX_SAMPLE_LOCATION_GRID_SIZE) in update_sample_locations()
72 for (pixel = 0; pixel < grid_width * grid_height; pixel++) { in update_sample_locations()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_state_validate.c93 unsigned grid_width, grid_height, hw_grid_width; in gm200_validate_sample_locations() local
100 &screen->base.base, ms, &grid_width, &grid_height); in gm200_validate_sample_locations()
112 for (pixel = 0; pixel < hw_grid_width*grid_height; pixel++) { in gm200_validate_sample_locations()
141 unsigned read_index = pixel_y % grid_height * hw_grid_width; in gm200_validate_sample_locations()