From dfbcf5a4cd40cfbbb0514dbcc7bf38e4bbfcf851 Mon Sep 17 00:00:00 2001 From: Spencer Fricke <115671160+spencer-lunarg@users.noreply.github.com> Date: Mon, 9 Sep 2024 11:39:25 -0700 Subject: [PATCH] docs: Fix typos in debug_printf.cpp --- layers/gpu/debug_printf/debug_printf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/gpu/debug_printf/debug_printf.cpp b/layers/gpu/debug_printf/debug_printf.cpp index 7c25660321b..5dbaea6c104 100644 --- a/layers/gpu/debug_printf/debug_printf.cpp +++ b/layers/gpu/debug_printf/debug_printf.cpp @@ -367,7 +367,7 @@ void Validator::AnalyzeAndGenerateMessage(VkCommandBuffer command_buffer, VkQueu InternalWarning(queue, loc, message.str().c_str()); } - // Only memset what is needed, in case we are only using only a small portion of a large buffer_size. + // Only memset what is needed, in case we are only using a small portion of a large buffer_size. // At the same time we want to make sure we don't memset past the actual VkBuffer allocation uint32_t clear_size = sizeof(uint32_t) * (debug_output_buffer[gpuav::kDebugPrintfOutputBufferSize] + gpuav::kDebugPrintfOutputBufferData);