From: Eric Anholt Date: Fri, 20 Dec 2019 00:47:08 +0000 (-0800) Subject: turnip: Fix some whitespace around binary operators. X-Git-Tag: upstream/20.1.8~4222 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ac662e8df687270cda6f8404354d7a1d0e67f7a;p=platform%2Fupstream%2Fmesa.git turnip: Fix some whitespace around binary operators. Conforms to mesa style and the rest of turnip. Reviewed-by: Jonathan Marek Part-of: --- diff --git a/src/freedreno/vulkan/tu_descriptor_set.c b/src/freedreno/vulkan/tu_descriptor_set.c index 5563736..c2edc54 100644 --- a/src/freedreno/vulkan/tu_descriptor_set.c +++ b/src/freedreno/vulkan/tu_descriptor_set.c @@ -92,10 +92,10 @@ descriptor_size(enum VkDescriptorType type) case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE: case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE: case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT: - return A6XX_TEX_CONST_DWORDS*4; + return A6XX_TEX_CONST_DWORDS * 4; case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER: /* texture const + tu_sampler struct (includes border color) */ - return A6XX_TEX_CONST_DWORDS*4 + sizeof(struct tu_sampler); + return A6XX_TEX_CONST_DWORDS * 4 + sizeof(struct tu_sampler); case VK_DESCRIPTOR_TYPE_SAMPLER: return sizeof(struct tu_sampler); default: @@ -845,7 +845,7 @@ tu_update_descriptor_sets(struct tu_device *device, break; case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER: write_combined_image_sampler_descriptor(device, cmd_buffer, - A6XX_TEX_CONST_DWORDS*4, + A6XX_TEX_CONST_DWORDS * 4, ptr, buffer_list, writeset->descriptorType, writeset->pImageInfo + j,