diff options
author | Anuj Phogat <anuj.phogat@gmail.com> | 2016-09-26 11:08:33 -0700 |
---|---|---|
committer | Anuj Phogat <anuj.phogat@gmail.com> | 2016-10-04 13:20:34 -0700 |
commit | 2abb7486f5fca85c3cd6e8b078c47be850e4d02a (patch) | |
tree | 7a18a411d2d3ee8331b74274e73967caf84ba59c /src | |
parent | fa04b57c1543c2b088208df967d66e573e47b2a4 (diff) |
anv/gen8_pipeline: Add an assert to ensure use_alt_mode is not set in prog_data
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/vulkan/gen8_pipeline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/gen8_pipeline.c b/src/intel/vulkan/gen8_pipeline.c index 1abb97c80b..0fe9e70d21 100644 --- a/src/intel/vulkan/gen8_pipeline.c +++ b/src/intel/vulkan/gen8_pipeline.c @@ -171,6 +171,7 @@ genX(graphics_pipeline_create)( } const struct brw_vs_prog_data *vs_prog_data = get_vs_prog_data(pipeline); + assert(!vs_prog_data->base.base.use_alt_mode); /* Skip the VUE header and position slots */ offset = 1; length = (vs_prog_data->base.vue_map.num_slots + 1) / 2 - offset; |