From 8be8ce1062b6255aff26f03ee254f60d83bfca9b Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Fri, 3 Feb 2023 15:06:14 -0800 Subject: [PATCH] shader output name includes shader type --- shadercompiler/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadercompiler/Program.cs b/shadercompiler/Program.cs index 2a11626..d618bee 100644 --- a/shadercompiler/Program.cs +++ b/shadercompiler/Program.cs @@ -186,7 +186,7 @@ partial class Program } // Create the output blob file - string outputFilepath = Path.Combine(data.outputDir, $"{shaderName}.refresh"); + string outputFilepath = Path.Combine(data.outputDir, $"{shaderName}{shaderType}.refresh"); using (FileStream fs = File.Create(outputFilepath)) { using (BinaryWriter writer = new BinaryWriter(fs))