From cdf63e6dce95bf7abf1f21438b08a8636b33bb48 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Thu, 9 Mar 2023 20:40:53 -0500 Subject: [PATCH] agx: Fix clang-formatting Not sure how this one slipped in. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_nir_lower_frag_sidefx.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/asahi/compiler/agx_nir_lower_frag_sidefx.c b/src/asahi/compiler/agx_nir_lower_frag_sidefx.c index f2615871cdc..357b9fbda84 100644 --- a/src/asahi/compiler/agx_nir_lower_frag_sidefx.c +++ b/src/asahi/compiler/agx_nir_lower_frag_sidefx.c @@ -45,10 +45,9 @@ pass(struct nir_builder *b, nir_instr *instr, void *data) .num_slots = 1, }); - nir_store_output(b, position, zero, - .io_semantics.location = FRAG_RESULT_DEPTH, - .write_mask = BITFIELD_MASK(1), - .src_type = nir_type_float32); + nir_store_output( + b, position, zero, .io_semantics.location = FRAG_RESULT_DEPTH, + .write_mask = BITFIELD_MASK(1), .src_type = nir_type_float32); b->shader->info.inputs_read |= BITFIELD64_BIT(VARYING_SLOT_POS); b->shader->info.outputs_written |= BITFIELD64_BIT(FRAG_RESULT_DEPTH);