From e446ad08318228362ef35d73e7a0636075cb3636 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 2 May 2017 12:03:03 -0700 Subject: layers: Fix validation of compute pipelines skip handling was inverted for this case. --- layers/core_validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 5e3b4644..def41fd4 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -6174,7 +6174,7 @@ VKAPI_ATTR VkResult VKAPI_CALL CreateComputePipelines(VkDevice device, VkPipelin pPipeState[i]->pipeline_layout = *getPipelineLayout(dev_data, pCreateInfos[i].layout); // TODO: Add Compute Pipeline Verification - skip |= !validate_compute_pipeline(dev_data, pPipeState[i]); + skip |= validate_compute_pipeline(dev_data, pPipeState[i]); // skip |= verifyPipelineCreateState(dev_data, pPipeState[i]); } -- cgit v1.2.3