From 4dd5f03edc991d9e70596ac88d857e3d87139206 Mon Sep 17 00:00:00 2001 From: Rajnesh Kanwal Date: Tue, 24 May 2022 14:17:09 +0100 Subject: [PATCH] pvr: Remove clang-format off comment from vk_format.h This enables clang formatting for vk_format.h. This was disabled as we were using tabs for indentation and vk_format.h uses three spaces for indentation. Signed-off-by: Rajnesh Kanwal Reviewed-by: Frank Binns Part-of: --- src/imagination/vulkan/vk_format.h | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/src/imagination/vulkan/vk_format.h b/src/imagination/vulkan/vk_format.h index 2473ac112bc..4d4fbee5d0c 100644 --- a/src/imagination/vulkan/vk_format.h +++ b/src/imagination/vulkan/vk_format.h @@ -28,7 +28,6 @@ * SOFTWARE. */ -/* clang-format off */ #ifndef VK_FORMAT_H #define VK_FORMAT_H @@ -40,8 +39,7 @@ #include "util/u_endian.h" -static inline bool -vk_format_is_alpha_on_msb(VkFormat vk_format) +static inline bool vk_format_is_alpha_on_msb(VkFormat vk_format) { const struct util_format_description *desc = vk_format_description(vk_format); @@ -49,14 +47,14 @@ vk_format_is_alpha_on_msb(VkFormat vk_format) return (desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB || desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) && #if UTIL_ARCH_BIG_ENDIAN - desc->swizzle[3] == PIPE_SWIZZLE_X; + desc->swizzle[3] == PIPE_SWIZZLE_X; #else - desc->swizzle[3] == PIPE_SWIZZLE_W; + desc->swizzle[3] == PIPE_SWIZZLE_W; #endif } -static inline uint -vk_format_get_channel_width(VkFormat vk_format, uint32_t channel) +static inline uint vk_format_get_channel_width(VkFormat vk_format, + uint32_t channel) { const struct util_format_description *desc = vk_format_description(vk_format); @@ -64,8 +62,7 @@ vk_format_get_channel_width(VkFormat vk_format, uint32_t channel) return desc->channel[channel].size; } -static inline bool -vk_format_has_32bit_component(VkFormat vk_format) +static inline bool vk_format_has_32bit_component(VkFormat vk_format) { const struct util_format_description *desc = vk_format_description(vk_format); @@ -88,8 +85,7 @@ vk_format_get_component_bits(VkFormat vk_format, component); } -static inline bool -vk_format_is_normalized(VkFormat vk_format) +static inline bool vk_format_is_normalized(VkFormat vk_format) { const struct util_format_description *desc = vk_format_description(vk_format);