Commit 59fa599a by Tobin Ehlis

Vulkan:maxPerStageDescriptorStorageBuffers = 16

Update the maxPerStageDescriptorStorageBuffers from 4 to 16. ANGLE requires at least 12 for GLES3.1 support, and 16 is a common number among actual hardware so bumping to 16. Bug: swiftshader:136 Change-Id: I2790a8cab197c773aa14d9c1b0fdcc5ca8356b25 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/38068 Kokoro-Presubmit: kokoro <noreply+kokoro@google.com> Reviewed-by: 's avatarChris Forbes <chrisforbes@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarTobin Ehlis <tobine@google.com>
parent 3c36ea10
...@@ -176,7 +176,7 @@ const VkPhysicalDeviceLimits& PhysicalDevice::getLimits() const ...@@ -176,7 +176,7 @@ const VkPhysicalDeviceLimits& PhysicalDevice::getLimits() const
MAX_BOUND_DESCRIPTOR_SETS, // maxBoundDescriptorSets MAX_BOUND_DESCRIPTOR_SETS, // maxBoundDescriptorSets
16, // maxPerStageDescriptorSamplers 16, // maxPerStageDescriptorSamplers
14, // maxPerStageDescriptorUniformBuffers 14, // maxPerStageDescriptorUniformBuffers
4, // maxPerStageDescriptorStorageBuffers 16, // maxPerStageDescriptorStorageBuffers
16, // maxPerStageDescriptorSampledImages 16, // maxPerStageDescriptorSampledImages
4, // maxPerStageDescriptorStorageImages 4, // maxPerStageDescriptorStorageImages
4, // maxPerStageDescriptorInputAttachments 4, // maxPerStageDescriptorInputAttachments
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment