Searched refs:radv_minify (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_decompress.c | 406 width = radv_minify(image->info.width, range->baseMipLevel + level); in radv_process_depth_image_layer() 407 height = radv_minify(image->info.height, range->baseMipLevel + level); in radv_process_depth_image_layer() 502 uint32_t width = radv_minify(image->info.width, subresourceRange->baseMipLevel + l); in radv_process_depth_stencil() 503 uint32_t height = radv_minify(image->info.height, subresourceRange->baseMipLevel + l); in radv_process_depth_stencil() 554 width = radv_minify(image->info.width, subresourceRange->baseMipLevel + l); in radv_expand_depth_stencil_compute() 555 height = radv_minify(image->info.height, subresourceRange->baseMipLevel + l); in radv_expand_depth_stencil_compute()
|
D | radv_meta_fast_clear.c | 484 width = radv_minify(image->info.width, range->baseMipLevel + level); in radv_process_color_image_layer() 485 height = radv_minify(image->info.height, range->baseMipLevel + level); in radv_process_color_image_layer() 615 width = radv_minify(image->info.width, subresourceRange->baseMipLevel + l); in radv_process_color_image() 616 height = radv_minify(image->info.height, subresourceRange->baseMipLevel + l); in radv_process_color_image() 746 width = radv_minify(image->info.width, subresourceRange->baseMipLevel + l); in radv_decompress_dcc_compute() 747 height = radv_minify(image->info.height, subresourceRange->baseMipLevel + l); in radv_decompress_dcc_compute()
|
D | radv_meta_blit.c | 248 uint32_t src_width = radv_minify(src_iview->image->info.width, src_iview->vk.base_mip_level); in meta_emit_blit() 249 uint32_t src_height = radv_minify(src_iview->image->info.height, src_iview->vk.base_mip_level); in meta_emit_blit() 250 uint32_t src_depth = radv_minify(src_iview->image->info.depth, src_iview->vk.base_mip_level); in meta_emit_blit() 251 uint32_t dst_width = radv_minify(dest_iview->image->info.width, dest_iview->vk.base_mip_level); in meta_emit_blit() 252 uint32_t dst_height = radv_minify(dest_iview->image->info.height, dest_iview->vk.base_mip_level); in meta_emit_blit()
|
D | radv_meta_clear.c | 1399 width = radv_minify(image->info.width, range->baseMipLevel + l); in radv_clear_dcc_comp_to_single() 1400 height = radv_minify(image->info.height, range->baseMipLevel + l); in radv_clear_dcc_comp_to_single() 2059 uint32_t width = radv_minify(image->info.width, range->baseMipLevel + level); in radv_clear_image_layer() 2060 uint32_t height = radv_minify(image->info.height, range->baseMipLevel + level); in radv_clear_image_layer() 2180 radv_minify(image->info.width, range->baseMipLevel), in radv_fast_clear_range() 2181 radv_minify(image->info.height, range->baseMipLevel), in radv_fast_clear_range() 2274 ? radv_minify(image->info.depth, range->baseMipLevel + l) in radv_cmd_clear_image()
|
D | radv_image.c | 2082 radv_minify(image->info.depth, range->baseMipLevel)); in radv_image_view_init() 2179 unsigned lvl_width = radv_minify(image->info.width, range->baseMipLevel); in radv_image_view_init() 2180 unsigned lvl_height = radv_minify(image->info.height, range->baseMipLevel); in radv_image_view_init()
|
D | radv_private.h | 181 radv_minify(uint32_t n, uint32_t levels) in radv_minify() function
|
D | radv_cmd_buffer.c | 6415 .width = radv_minify(ds_image->info.width, level), in radv_cmd_buffer_begin_subpass() 6416 .height = radv_minify(ds_image->info.height, level), in radv_cmd_buffer_begin_subpass()
|