diff options
author | Samuel Pitoiset <[email protected]> | 2019-02-12 15:09:30 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-02-14 09:09:51 +0100 |
commit | 45382baef621d8e947310daf49d979d9b9da21f6 (patch) | |
tree | cadc390906c1d0bedc0c37635a5bf0730d52d85b /src | |
parent | 2154fac6f3caf207e7d2a90e99ee71937c7989b6 (diff) |
radv: use MAX_{VBS,VERTEX_ATTRIBS} when defining max vertex input limits
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 9509b3db13c..190de86b2cd 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -939,8 +939,8 @@ void radv_GetPhysicalDeviceProperties( .maxDescriptorSetSampledImages = max_descriptor_set_size, .maxDescriptorSetStorageImages = max_descriptor_set_size, .maxDescriptorSetInputAttachments = max_descriptor_set_size, - .maxVertexInputAttributes = 32, - .maxVertexInputBindings = 32, + .maxVertexInputAttributes = MAX_VERTEX_ATTRIBS, + .maxVertexInputBindings = MAX_VBS, .maxVertexInputAttributeOffset = 2047, .maxVertexInputBindingStride = 2048, .maxVertexOutputComponents = 128, |