From 6c54344f5b002a37ebdffff897c2b5d8c9ca3742 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Thu, 8 Aug 2024 12:13:51 -0500 Subject: [PATCH] nvk: Properly indent a comment Part-of: --- src/nouveau/vulkan/nvk_descriptor_set_layout.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nouveau/vulkan/nvk_descriptor_set_layout.c b/src/nouveau/vulkan/nvk_descriptor_set_layout.c index 25598a2e2f6..50e820a4386 100644 --- a/src/nouveau/vulkan/nvk_descriptor_set_layout.c +++ b/src/nouveau/vulkan/nvk_descriptor_set_layout.c @@ -157,9 +157,9 @@ nvk_CreateDescriptorSetLayout(VkDevice device, const VkDescriptorSetLayoutBinding *binding = &pCreateInfo->pBindings[j]; uint32_t b = binding->binding; /* We temporarily store pCreateInfo->pBindings[] index (plus one) in the - * immutable_samplers pointer. This provides us with a quick-and-dirty - * way to sort the bindings by binding number. - */ + * immutable_samplers pointer. This provides us with a quick-and-dirty + * way to sort the bindings by binding number. + */ layout->binding[b].immutable_samplers = (void *)(uintptr_t)(j + 1); }