From 07fb0ce2387e20b4f74ed4ffc6c1015f70a0dc2b Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Thu, 27 Feb 2025 11:53:01 -0600 Subject: [PATCH] nvk: Fix capitalization of statistics Reviewed-by: Mel Henning Part-of: --- src/nouveau/vulkan/nvk_shader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nouveau/vulkan/nvk_shader.c b/src/nouveau/vulkan/nvk_shader.c index 447b1dc9226..d38f4005ec4 100644 --- a/src/nouveau/vulkan/nvk_shader.c +++ b/src/nouveau/vulkan/nvk_shader.c @@ -1296,7 +1296,7 @@ nvk_shader_get_executable_statistics( } vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) { - WRITE_STR(stat->name, "Code Size"); + WRITE_STR(stat->name, "Code size"); WRITE_STR(stat->description, "Size of the compiled shader binary, in bytes"); stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR; @@ -1311,7 +1311,7 @@ nvk_shader_get_executable_statistics( } vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) { - WRITE_STR(stat->name, "SLM Size"); + WRITE_STR(stat->name, "SLM size"); WRITE_STR(stat->description, "Size of shader local (scratch) memory, in bytes"); stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;