commit | 5b8e2bb97335377b81d0d935cd1f2e5b723ccb41 | [log] [tgz] |
---|---|---|
author | Tobin Ehlis <tobin@lunarg.com> | Mon Sep 21 11:46:16 2015 -0600 |
committer | Tobin Ehlis <tobin@lunarg.com> | Mon Sep 21 11:46:16 2015 -0600 |
tree | afdbaa50d940238ff2f39d2f98e6ccd37b7c8fab | |
parent | 5f728d3250ab54356b3beb959675cf38e196da34 [diff] [blame] |
Fix error return code in pipeline.c
diff --git a/icd/intel/pipeline.c b/icd/intel/pipeline.c index 2ba4e46..391feff 100644 --- a/icd/intel/pipeline.c +++ b/icd/intel/pipeline.c
@@ -1090,7 +1090,7 @@ */ if (info->vi.bindingCount > ARRAY_SIZE(pipeline->vb) || info->vi.attributeCount > ARRAY_SIZE(pipeline->vb)) { - return VK_ERROR_UNKNOWN; + return VK_ERROR_VALIDATION_FAILED; } pipeline->vb_count = info->vi.bindingCount;