summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/genX_pipeline.c
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2017-01-29 02:44:32 +0000
committerLionel Landwerlin <[email protected]>2017-02-02 01:32:39 +0000
commit98cf60a3ce27f6afccca3150583793c143eac646 (patch)
treeefb1f096328a1b145eacbf8a497c25753684a37b /src/intel/vulkan/genX_pipeline.c
parent9c45bb731c97d1f02f83b872c67b2c1b04ec3a41 (diff)
anv: limit vertex buffers to 31
Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Anuj Phogat <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/genX_pipeline.c')
-rw-r--r--src/intel/vulkan/genX_pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c
index 9d28466f796..d3a9d4302e5 100644
--- a/src/intel/vulkan/genX_pipeline.c
+++ b/src/intel/vulkan/genX_pipeline.c
@@ -133,7 +133,7 @@ emit_vertex_input(struct anv_pipeline *pipeline,
VK_IMAGE_ASPECT_COLOR_BIT,
VK_IMAGE_TILING_LINEAR);
- assert(desc->binding < 32);
+ assert(desc->binding < MAX_VBS);
if ((elements & (1 << desc->location)) == 0)
continue; /* Binding unused */