From 706f80467748ac1905934fb90bd23ffb7afbd5c7 Mon Sep 17 00:00:00 2001 From: Rylie Pavlik Date: Wed, 2 Oct 2024 12:25:59 -0500 Subject: [PATCH] a/vk: Fix typo and clarify comment Part-of: --- src/xrt/auxiliary/vk/vk_helpers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrt/auxiliary/vk/vk_helpers.c b/src/xrt/auxiliary/vk/vk_helpers.c index 062181738..91157c91e 100644 --- a/src/xrt/auxiliary/vk/vk_helpers.c +++ b/src/xrt/auxiliary/vk/vk_helpers.c @@ -1078,9 +1078,9 @@ vk_create_image_from_native(struct vk_bundle *vk, #ifdef XRT_GRAPHICS_BUFFER_HANDLE_IS_AHARDWAREBUFFER /* * Some Vulkan drivers will natively support importing and exporting - * SRGB formats (Qualcomm) even tho technically that's not intended + * SRGB formats (Qualcomm Adreno) even tho technically that's not intended * by the AHardwareBuffer since they don't support sRGB formats. - * While others (Mail) does not support importing and exporting sRGB + * While others (arm Mali) does not support importing and exporting sRGB * formats. So we need to create the image without sRGB and then create * the image views with sRGB which is allowed by the Vulkan spec. It * seems to be safe to do with on all drivers, so to reduce the logic