aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_descriptor_set.h
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2017-04-18 13:22:32 +1000
committerDave Airlie <[email protected]>2017-04-19 09:00:43 +1000
commitfd420a7417c30e17b55c24d74b0fb399bfe3a2d4 (patch)
tree2f7044ccf411dfe3d2292d4c7009e8a6dd981e17 /src/amd/vulkan/radv_descriptor_set.h
parent25a5ee391d786b6d0b48b2b9aa0553e6972d97a0 (diff)
radv: add support for 32 descriptor sets.
This bumps the limit to the number of sets to 32, now that we have proper support for it. It also uses 1u in a few places to make things a bit safer. Reviewed-by: Bas Nieuwenhuizen <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_descriptor_set.h')
-rw-r--r--src/amd/vulkan/radv_descriptor_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_descriptor_set.h b/src/amd/vulkan/radv_descriptor_set.h
index a9f4bc6497e..a90eb5c3076 100644
--- a/src/amd/vulkan/radv_descriptor_set.h
+++ b/src/amd/vulkan/radv_descriptor_set.h
@@ -26,7 +26,7 @@
#include <vulkan/vulkan.h>
-#define MAX_SETS 8
+#define MAX_SETS 32
struct radv_descriptor_set_binding_layout {
VkDescriptorType type;