From c1021e2d93e69e59b9056542b4ed49d48cd81a2a Mon Sep 17 00:00:00 2001 From: Tobin Ehlis Date: Mon, 17 Jul 2017 14:03:12 -0600 Subject: layers:Fix copy-paste dstStageMask print bug Fix this copy-and-pasted error message by changing src->dst. --- layers/core_validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layers/core_validation.cpp') 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]); } } -- cgit v1.2.3