From 2c2fce1e90562705f7dc7034739ab93b0ac5af7c Mon Sep 17 00:00:00 2001 From: firestar99 Date: Tue, 19 Aug 2025 15:27:59 +0200 Subject: [PATCH] shaders: fix node-macro tests --- node-graph/node-macro/src/parsing.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/node-graph/node-macro/src/parsing.rs b/node-graph/node-macro/src/parsing.rs index 873bf6bd9..4cef3112c 100644 --- a/node-graph/node-macro/src/parsing.rs +++ b/node-graph/node-macro/src/parsing.rs @@ -835,6 +835,7 @@ mod tests { number_hard_max: None, number_mode_range: None, implementations: Punctuated::new(), + gpu_image: false, }), number_display_decimal_places: None, number_step: None, @@ -915,6 +916,7 @@ mod tests { number_hard_max: None, number_mode_range: None, implementations: Punctuated::new(), + gpu_image: false, }), number_display_decimal_places: None, number_step: None, @@ -978,6 +980,7 @@ mod tests { number_hard_max: None, number_mode_range: None, implementations: Punctuated::new(), + gpu_image: false, }), number_display_decimal_places: None, number_step: None, @@ -1044,6 +1047,7 @@ mod tests { p.push(parse_quote!(f64)); p }, + gpu_image: false, }), number_display_decimal_places: None, number_step: None, @@ -1112,6 +1116,7 @@ mod tests { number_hard_max: None, number_mode_range: Some(parse_quote!((0., 100.))), implementations: Punctuated::new(), + gpu_image: false, }), number_display_decimal_places: None, number_step: None, @@ -1173,6 +1178,7 @@ mod tests { number_hard_max: None, number_mode_range: None, implementations: Punctuated::new(), + gpu_image: false, }), number_display_decimal_places: None, number_step: None,