diff options
| author | Chris Forbes <chrisforbes@google.com> | 2017-05-02 12:03:03 -0700 |
|---|---|---|
| committer | Chris Forbes <chrisf@ijw.co.nz> | 2017-05-02 12:21:01 -0700 |
| commit | 4ded78d26ba392658ae5098fb89d54c41b4fa8d4 (patch) | |
| tree | 3ff23417635dffb22fecb8078f27b65567f19ad0 /layers/core_validation.cpp | |
| parent | 7057f6cbb5aeca675e67b1b6ff3deb13c9fc5081 (diff) | |
| download | usermoji-4ded78d26ba392658ae5098fb89d54c41b4fa8d4.tar.xz | |
layers: Fix validation of compute pipelines
skip handling was inverted for this case.
Diffstat (limited to 'layers/core_validation.cpp')
| -rw-r--r-- | layers/core_validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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]); } |
