Module: Mesa
Branch: master
Commit: 45382baef621d8e947310daf49d979d9b9da21f6
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=45382baef621d8e947310daf49d979d9b9da21f6

Author: Samuel Pitoiset <[email protected]>
Date:   Tue Feb 12 15:09:30 2019 +0100

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]>

---

 src/amd/vulkan/radv_device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
index 9509b3db13..190de86b2c 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,

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to