From: Dave Airlie Date: Thu, 30 Mar 2017 06:58:22 +0000 (+0100) Subject: radv: add support for some device specific tess information. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbfb62df166527b20c9a2217c559119c138f3af4;p=mesa.git radv: add support for some device specific tess information. Reviewed-by: Bas Nieuwenhuizen Signed-off-by: Dave Airlie --- diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 64970bd1b3a..fe531e1072f 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -962,6 +962,12 @@ VkResult radv_CreateDevice( radv_device_init_gs_info(device); + device->tess_offchip_block_dw_size = + device->physical_device->rad_info.family == CHIP_HAWAII ? 4096 : 8192; + device->has_distributed_tess = + device->physical_device->rad_info.chip_class >= VI && + device->physical_device->rad_info.max_se >= 2; + result = radv_device_init_meta(device); if (result != VK_SUCCESS) goto fail; diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 33f35245792..3c246641af7 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -487,6 +487,8 @@ struct radv_device { uint64_t debug_flags; bool llvm_supports_spill; + bool has_distributed_tess; + uint32_t tess_offchip_block_dw_size; uint32_t scratch_waves; uint32_t gs_table_depth;