From 44c16fee922f14b35bfe6cfbf4d05db935b35c9a Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 21 Nov 2016 10:45:39 +1300 Subject: Update out of range attachment check to use unique enum Signed-off-by: Chris Forbes --- layers/core_validation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'layers/core_validation.cpp') diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 7177ee09..e2be92b0 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -10323,9 +10323,9 @@ static bool ValidateAttachmentIndex(layer_data *dev_data, uint32_t attachment, u bool skip_call = false; if (attachment >= attachment_count && attachment != VK_ATTACHMENT_UNUSED) { skip_call |= log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, (VkDebugReportObjectTypeEXT)0, 0, __LINE__, - DRAWSTATE_INVALID_ATTACHMENT_INDEX, "DS", - "CreateRenderPass: %s attachment %d must be less than the total number of attachments %d.", - type, attachment, attachment_count); + VALIDATION_ERROR_00325, "DS", + "CreateRenderPass: %s attachment %d must be less than the total number of attachments %d. %s", + type, attachment, attachment_count, validation_error_map[VALIDATION_ERROR_00325]); } return skip_call; } -- cgit v1.2.3