lavapipe: bump .maxResourceDescriptorBufferRange
Fail (maxResourceDescriptorBufferRange is less than (((1u << 20) - (1u << 15)) * maxResourceDescriptorSize) at vktBindingDescriptorBufferTests.cpp:5127) bump this to pass the test now. Reviewed-by: Roland Scheidegger <sroland@vmware.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25398>
This commit is contained in:
parent
da53d0b6e5
commit
af3cca98a2
1 changed files with 2 additions and 1 deletions
|
|
@ -661,6 +661,7 @@ lvp_get_properties(const struct lvp_physical_device *device, struct vk_propertie
|
|||
|
||||
int texel_buffer_alignment = device->pscreen->get_param(device->pscreen, PIPE_CAP_TEXTURE_BUFFER_OFFSET_ALIGNMENT);
|
||||
|
||||
STATIC_ASSERT(sizeof(struct lp_descriptor) <= 256);
|
||||
*p = (struct vk_properties) {
|
||||
/* Vulkan 1.0 */
|
||||
.apiVersion = LVP_API_VERSION,
|
||||
|
|
@ -968,7 +969,7 @@ lvp_get_properties(const struct lvp_physical_device *device, struct vk_propertie
|
|||
.inputAttachmentDescriptorSize = sizeof(struct lp_descriptor),
|
||||
.accelerationStructureDescriptorSize = 0,
|
||||
.maxSamplerDescriptorBufferRange = 1<<27, //spec minimum
|
||||
.maxResourceDescriptorBufferRange = 1<<27, //spec minimum
|
||||
.maxResourceDescriptorBufferRange = 1<<28, //spec minimum
|
||||
.resourceDescriptorBufferAddressSpaceSize = 1<<27, //spec minimum
|
||||
.samplerDescriptorBufferAddressSpaceSize = 1<<27, //spec minimum
|
||||
.descriptorBufferAddressSpaceSize = 1<<27, //spec minimum
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue