Skip to content

Commit d3a92f5

Browse files
committed
Add PowerVR compiler. Fixes #8.
1 parent fe275d5 commit d3a92f5

File tree

5 files changed

+107
-0
lines changed

5 files changed

+107
-0
lines changed

build.cake

+13
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,18 @@ Task("Download-RGA")
256256
DownloadRga("2.0.1");
257257
});
258258

259+
Task("Copy-PowerVR")
260+
.Does(() => {
261+
void CopyVersion(string version)
262+
{
263+
var binariesFolder = $"./src/ShaderPlayground.Core/Binaries/powervr/{version}";
264+
EnsureDirectoryExists(binariesFolder);
265+
CleanDirectory(binariesFolder);
266+
267+
CopyFiles($"./lib/PowerVR/{version}/*.*", binariesFolder);
268+
}
269+
});
270+
259271
Task("Build-ANGLE")
260272
.Does(() => {
261273
StartProcess(MakeAbsolute(File("./external/angle/build.bat")), new ProcessSettings {
@@ -437,6 +449,7 @@ Task("Default")
437449
.IsDependentOn("Download-zstd")
438450
.IsDependentOn("Download-LZMA")
439451
.IsDependentOn("Download-RGA")
452+
.IsDependentOn("Copy-PowerVR")
440453
.IsDependentOn("Build-ANGLE")
441454
.IsDependentOn("Build")
442455
.IsDependentOn("Test");
2.32 MB
Binary file not shown.

src/ShaderPlayground.Core/Compiler.cs

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
using ShaderPlayground.Core.Compilers.Lzma;
1313
using ShaderPlayground.Core.Compilers.Mali;
1414
using ShaderPlayground.Core.Compilers.Miniz;
15+
using ShaderPlayground.Core.Compilers.PowerVR;
1516
using ShaderPlayground.Core.Compilers.Rga;
1617
using ShaderPlayground.Core.Compilers.Slang;
1718
using ShaderPlayground.Core.Compilers.Smolv;
@@ -46,6 +47,7 @@ public static class Compiler
4647
new LzmaCompiler(),
4748
new MaliCompiler(),
4849
new MinizCompiler(),
50+
new PowerVRCompiler(),
4951
new RgaCompiler(),
5052
new SlangCompiler(),
5153
new SmolvToSpirvCompiler(),

src/ShaderPlayground.Core/CompilerNames.cs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ public static class CompilerNames
77
public const string Fxc = "fxc";
88
public const string Mali = "mali";
99
public const string Glslang = "glslang";
10+
public const string PowerVR = "powervr";
1011
public const string Rga = "rga";
1112
public const string SpirvAssembler = "spirv-as";
1213
public const string SpirVCross = "spirv-cross";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
using System;
2+
using System.IO;
3+
using ShaderPlayground.Core.Util;
4+
5+
namespace ShaderPlayground.Core.Compilers.PowerVR
6+
{
7+
internal sealed class PowerVRCompiler : IShaderCompiler
8+
{
9+
public string Name { get; } = CompilerNames.PowerVR;
10+
public string DisplayName { get; } = "PowerVR compiler";
11+
public string Url { get; } = "https://community.imgtec.com/developers/powervr/tools/pvrshadereditor/";
12+
public string Description { get; } = "PowerVR GLSL-ES shader compiler";
13+
14+
public string[] InputLanguages { get; } = { LanguageNames.Glsl };
15+
16+
public ShaderCompilerParameter[] Parameters { get; } = new[]
17+
{
18+
CommonParameters.CreateVersionParameter("powervr"),
19+
CommonParameters.GlslShaderStage
20+
};
21+
22+
public ShaderCompilerResult Compile(ShaderCode shaderCode, ShaderCompilerArguments arguments)
23+
{
24+
string shaderType;
25+
switch (arguments.GetString("ShaderStage"))
26+
{
27+
case "vert":
28+
shaderType = "-v";
29+
break;
30+
31+
case "tesc":
32+
shaderType = "-tc";
33+
break;
34+
35+
case "tese":
36+
shaderType = "-te";
37+
break;
38+
39+
case "geom":
40+
shaderType = "-g";
41+
break;
42+
43+
case "frag":
44+
shaderType = "-f";
45+
break;
46+
47+
case "comp":
48+
shaderType = "-c";
49+
break;
50+
51+
default:
52+
throw new InvalidOperationException();
53+
}
54+
55+
using (var tempFile = TempFile.FromShaderCode(shaderCode))
56+
{
57+
var outputDisassemblyPath = Path.ChangeExtension(tempFile.FilePath, ".disasm");
58+
var outputProfilePath = Path.ChangeExtension(tempFile.FilePath, ".prof");
59+
60+
ProcessHelper.Run(
61+
CommonParameters.GetBinaryPath("powervr", arguments, "GLSLESCompiler_Rogue.exe"),
62+
$"{tempFile.FilePath} {tempFile.FilePath} {shaderType} -disasm -profile",
63+
out var stdOutput,
64+
out var stdError);
65+
66+
if (stdError == string.Empty)
67+
{
68+
stdError = stdOutput;
69+
}
70+
71+
var outputDisassembly = FileHelper.ReadAllTextIfExists(outputDisassemblyPath);
72+
var outputProfile = FileHelper.ReadAllTextIfExists(outputProfilePath);
73+
74+
FileHelper.DeleteIfExists(outputDisassemblyPath);
75+
FileHelper.DeleteIfExists(outputProfilePath);
76+
77+
var selectedOutputIndex = stdError.Contains("failed")
78+
? 2
79+
: (int?) null;
80+
81+
return new ShaderCompilerResult(
82+
true,
83+
null,
84+
selectedOutputIndex,
85+
new ShaderCompilerOutput("Disassembly", null, outputDisassembly),
86+
new ShaderCompilerOutput("Profiling", null, outputProfile),
87+
new ShaderCompilerOutput("Output", null, stdError));
88+
}
89+
}
90+
}
91+
}

0 commit comments

Comments
 (0)