Fix gpu nodes

This commit is contained in:
Timon
2026-04-24 16:46:16 +00:00
parent 7afa1ced37
commit 96b18d2552
3 changed files with 3 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ impl ShaderCodegen for PerPixelAdjust {
}
}
let entry_point_mod = format_ident!("{}_gpu_entry_point", fn_name);
let entry_point_mod = format_ident!("{}_gpu", fn_name);
let entry_point_name_ident = format_ident!("ENTRY_POINT_NAME");
let entry_point_name = quote!(#entry_point_mod::#entry_point_name_ident);
let uniform_struct_ident = format_ident!("Uniform");