Skip to content

Commit 3001ff6

Browse files
committed
Update Tint to 9b78c1e
Add GLSL output option.
1 parent 52b7c4e commit 3001ff6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

external/tint/source

Submodule source updated from 3242d3e to 9b78c1e

src/ShaderPlayground.Core/Compilers/Tint/TintCompiler.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ internal sealed class TintCompiler : IShaderCompiler
3434
LanguageNames.SpirvAssembly,
3535
LanguageNames.Wgsl,
3636
LanguageNames.Metal,
37-
LanguageNames.Hlsl
37+
LanguageNames.Hlsl,
38+
LanguageNames.Glsl
3839
})
3940
};
4041

@@ -116,6 +117,9 @@ private static bool RunTint(string exePath, ShaderCode code, string stage, strin
116117
case LanguageNames.Hlsl:
117118
args.Add("--format hlsl");
118119
break;
120+
case LanguageNames.Glsl:
121+
args.Add("--format glsl");
122+
break;
119123
}
120124

121125
if (stage != AllShaderStages)

0 commit comments

Comments
 (0)