aboutsummaryrefslogtreecommitdiff
path: root/layers/core_validation.cpp
diff options
context:
space:
mode:
authorTobin Ehlis <tobine@google.com>2017-07-17 14:03:12 -0600
committerTobin Ehlis <tobine@google.com>2017-07-18 14:08:38 -0600
commitc1021e2d93e69e59b9056542b4ed49d48cd81a2a (patch)
tree89065903f5929bf3b0422e0d6636ec6ffcfe4532 /layers/core_validation.cpp
parentccf3af618bf4815043d0781bb91bef86de2534b4 (diff)
downloadusermoji-c1021e2d93e69e59b9056542b4ed49d48cd81a2a.tar.xz
layers:Fix copy-paste dstStageMask print bug
Fix this copy-and-pasted error message by changing src->dst.
Diffstat (limited to 'layers/core_validation.cpp')
-rw-r--r--layers/core_validation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp
index 2f3c4044..e5b11c9c 100644
--- a/layers/core_validation.cpp
+++ b/layers/core_validation.cpp
@@ -6177,7 +6177,7 @@ static bool ValidateRenderPassPipelineBarriers(layer_data *device_data, const ch
rp_handle, __LINE__, VALIDATION_ERROR_1b80092c, "CORE",
"%s: Barrier dstStageMask(0x%X) is not a subset of VkSubpassDependency dstStageMask(0x%X) of "
"subpass %d of renderPass 0x%" PRIx64 ". %s",
- funcName, src_stage_mask, sub_src_mask, cb_state->activeSubpass, rp_handle,
+ funcName, dst_stage_mask, sub_dst_mask, cb_state->activeSubpass, rp_handle,
validation_error_map[VALIDATION_ERROR_1b80092c]);
}
}