mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 10:50:10 +01:00
radv: Expose a bufferImageGranularity of 1.
It shouldn't matter as image & buffer alignment are enough and we don't need any alignment between the two. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5213 Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12765>
This commit is contained in:
parent
9c158fcc70
commit
afee571d2b
1 changed files with 1 additions and 1 deletions
|
|
@ -1775,7 +1775,7 @@ radv_GetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice,
|
|||
.maxPushConstantsSize = MAX_PUSH_CONSTANTS_SIZE,
|
||||
.maxMemoryAllocationCount = UINT32_MAX,
|
||||
.maxSamplerAllocationCount = 64 * 1024,
|
||||
.bufferImageGranularity = 64, /* A cache line */
|
||||
.bufferImageGranularity = 1,
|
||||
.sparseAddressSpaceSize = RADV_MAX_MEMORY_ALLOCATION_SIZE, /* buffer max size */
|
||||
.maxBoundDescriptorSets = MAX_SETS,
|
||||
.maxPerStageDescriptorSamplers = max_descriptor_set_size,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue