|
1 | 1 | using System;
|
2 | 2 | using System.Collections.Generic;
|
3 |
| -using SharpDX.D3DCompiler; |
| 3 | +using System.IO; |
| 4 | +using ShaderPlayground.Core.Util; |
4 | 5 |
|
5 | 6 | namespace ShaderPlayground.Core.Compilers.Fxc
|
6 | 7 | {
|
7 | 8 | public sealed class FxcCompiler : IShaderCompiler
|
8 | 9 | {
|
9 |
| - static FxcCompiler() |
10 |
| - { |
11 |
| - // Preload native DLL, so that we can explicitly |
12 |
| - // load either 32-bit or 64-bit DLL. |
13 |
| - NativeMethods.LoadDll("d3dcompiler_47.dll"); |
14 |
| - } |
15 |
| - |
16 | 10 | public string Name { get; } = "FXC";
|
17 | 11 | public string DisplayName { get; } = "Microsoft FXC";
|
18 | 12 | public string Description { get; } = "Legacy HLSL-to-DXBC compiler (fxc.exe)";
|
@@ -76,48 +70,35 @@ public ShaderCompilerResult Compile(string code, Dictionary<string, string> argu
|
76 | 70 | var disableOptimizations = Convert.ToBoolean(arguments["DisableOptimizations"]);
|
77 | 71 | var optimizationLevel = Convert.ToInt32(arguments["OptimizationLevel"]);
|
78 | 72 |
|
79 |
| - var shaderFlags = ShaderFlags.None; |
80 |
| - |
81 |
| - if (disableOptimizations) |
82 |
| - { |
83 |
| - shaderFlags |= ShaderFlags.SkipOptimization; |
84 |
| - } |
85 |
| - |
86 |
| - switch (optimizationLevel) |
| 73 | + using (var tempFile = TempFile.FromText(code)) |
87 | 74 | {
|
88 |
| - case 0: |
89 |
| - shaderFlags |= ShaderFlags.OptimizationLevel0; |
90 |
| - break; |
91 |
| - |
92 |
| - case 1: |
93 |
| - shaderFlags |= ShaderFlags.OptimizationLevel1; |
94 |
| - break; |
95 |
| - |
96 |
| - case 2: |
97 |
| - shaderFlags |= ShaderFlags.OptimizationLevel2; |
98 |
| - break; |
99 |
| - |
100 |
| - case 3: |
101 |
| - shaderFlags |= ShaderFlags.OptimizationLevel3; |
102 |
| - break; |
| 75 | + var args = $"--target {targetProfile} --entrypoint {entryPoint} --optimizationlevel {optimizationLevel}"; |
| 76 | + |
| 77 | + if (disableOptimizations) |
| 78 | + { |
| 79 | + args += " --disableoptimizations"; |
| 80 | + } |
| 81 | + |
| 82 | + ProcessHelper.Run( |
| 83 | + Path.Combine(AppContext.BaseDirectory, "Binaries", "Fxc", "ShaderPlayground.Shims.Fxc.exe"), |
| 84 | + $"{args} \"{tempFile.FilePath}\"", |
| 85 | + out var stdOutput, |
| 86 | + out var stdError); |
| 87 | + |
| 88 | + int? selectedOutputIndex = null; |
| 89 | + |
| 90 | + var disassembly = stdOutput; |
| 91 | + if (string.IsNullOrWhiteSpace(stdOutput)) |
| 92 | + { |
| 93 | + disassembly = "Compilation error occurred; no disassembly available."; |
| 94 | + selectedOutputIndex = 1; |
| 95 | + } |
| 96 | + |
| 97 | + return new ShaderCompilerResult( |
| 98 | + selectedOutputIndex, |
| 99 | + new ShaderCompilerOutput("Disassembly", "DXBC", disassembly), |
| 100 | + new ShaderCompilerOutput("Build output", null, stdError)); |
103 | 101 | }
|
104 |
| - |
105 |
| - var compilationResult = ShaderBytecode.Compile( |
106 |
| - code, |
107 |
| - entryPoint, |
108 |
| - targetProfile, |
109 |
| - shaderFlags); |
110 |
| - |
111 |
| - var hasCompilationErrors = compilationResult.HasErrors || compilationResult.Bytecode == null; |
112 |
| - |
113 |
| - var disassembly = !hasCompilationErrors |
114 |
| - ? compilationResult.Bytecode.Disassemble(DisassemblyFlags.None) |
115 |
| - : "Compilation error occurred; no disassembly available."; |
116 |
| - |
117 |
| - return new ShaderCompilerResult( |
118 |
| - hasCompilationErrors ? 1 : (int?) null, |
119 |
| - new ShaderCompilerOutput("Disassembly", "DXBC", disassembly), |
120 |
| - new ShaderCompilerOutput("Build output", null, compilationResult.Message ?? "<No build output>")); |
121 | 102 | }
|
122 | 103 | }
|
123 | 104 | }
|
0 commit comments