mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 12:30:09 +01:00
anv: Set better descriptor set limits
Based on discussions with Jason, Ivy Bridge and Bay Trail only actually support 16 samplers, while newer hardware can support more than the current limit of 64. Therefore set the lower limit where needed, and bump up to 128 for everything else. There is also a limit on the total number of other resources of around 250. This allows Dawn of War III to render correctly on ANV. Signed-off-by: Alex Smith <asmith@feralinteractive.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
59c1797d56
commit
922b038864
1 changed files with 6 additions and 3 deletions
|
|
@ -765,6 +765,9 @@ void anv_GetPhysicalDeviceProperties(
|
|||
const uint32_t max_raw_buffer_sz = devinfo->gen >= 7 ?
|
||||
(1ul << 30) : (1ul << 27);
|
||||
|
||||
const uint32_t max_samplers = (devinfo->gen >= 8 || devinfo->is_haswell) ?
|
||||
128 : 16;
|
||||
|
||||
VkSampleCountFlags sample_counts =
|
||||
isl_device_get_sample_counts(&pdevice->isl_dev);
|
||||
|
||||
|
|
@ -783,13 +786,13 @@ void anv_GetPhysicalDeviceProperties(
|
|||
.bufferImageGranularity = 64, /* A cache line */
|
||||
.sparseAddressSpaceSize = 0,
|
||||
.maxBoundDescriptorSets = MAX_SETS,
|
||||
.maxPerStageDescriptorSamplers = 64,
|
||||
.maxPerStageDescriptorSamplers = max_samplers,
|
||||
.maxPerStageDescriptorUniformBuffers = 64,
|
||||
.maxPerStageDescriptorStorageBuffers = 64,
|
||||
.maxPerStageDescriptorSampledImages = 64,
|
||||
.maxPerStageDescriptorSampledImages = max_samplers,
|
||||
.maxPerStageDescriptorStorageImages = 64,
|
||||
.maxPerStageDescriptorInputAttachments = 64,
|
||||
.maxPerStageResources = 128,
|
||||
.maxPerStageResources = 250,
|
||||
.maxDescriptorSetSamplers = 256,
|
||||
.maxDescriptorSetUniformBuffers = 256,
|
||||
.maxDescriptorSetUniformBuffersDynamic = MAX_DYNAMIC_BUFFERS / 2,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue