From 0003e16fc6706d71ad96deb03d7f2da84df33419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Thu, 19 Jun 2025 13:45:49 +0200 Subject: [PATCH] nir/lower_clip: update comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As the lowering mentioned there got renamed twice: commit b085016f94721a6c18f7076fc37c450a98e6bdbc Author: Rob Clark Date: Fri Mar 25 13:52:26 2016 -0400 nir: rename lower_outputs_to_temporaries -> lower_io_to_temporaries Since it will gain support to lower inputs, give it a more generic name. commit 1754507d49891f71195d1af4e51ccbab892ceea2 Author: Marek Ol¨ák Date: Wed Jun 25 19:05:19 2025 -0400 nir: rename nir_lower_io_to_temporaries -> nir_lower_io_vars_to_temporaries Acked-by: Alyssa Rosenzweig Part-of: Reviewed-by: Marek Ol¨ák Part-of: --- src/compiler/nir/nir_lower_clip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_lower_clip.c b/src/compiler/nir/nir_lower_clip.c index 38d55c90325..4d67ed52bb6 100644 --- a/src/compiler/nir/nir_lower_clip.c +++ b/src/compiler/nir/nir_lower_clip.c @@ -34,7 +34,7 @@ * for fragment shaders to insert conditional kills based on the inter- * polated CLIPDIST * - * NOTE: should be run after nir_lower_outputs_to_temporaries() (or at + * NOTE: should be run after nir_lower_io_var_to_temporaries() (or at * least in scenarios where you can count on each output written once * and only once). */