mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 21:18:34 +00:00
33e7c89822
* Move MaxUboSize definition This fix a crash on Ryujinx.ShaderTools caused by the absence of an OpenGL context. * Use a constant for the value in ShaderTools * Address comments
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using Ryujinx.Graphics.Gal;
|
|
using Ryujinx.Graphics.Gal.Shader;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace Ryujinx.ShaderTools
|
|
{
|
|
class Program
|
|
{
|
|
private static readonly int MaxUboSize = 65536;
|
|
|
|
static void Main(string[] args)
|
|
{
|
|
if (args.Length == 2)
|
|
{
|
|
GlslDecompiler Decompiler = new GlslDecompiler(MaxUboSize);
|
|
|
|
GalShaderType ShaderType = GalShaderType.Vertex;
|
|
|
|
switch (args[0].ToLower())
|
|
{
|
|
case "v": ShaderType = GalShaderType.Vertex; break;
|
|
case "tc": ShaderType = GalShaderType.TessControl; break;
|
|
case "te": ShaderType = GalShaderType.TessEvaluation; break;
|
|
case "g": ShaderType = GalShaderType.Geometry; break;
|
|
case "f": ShaderType = GalShaderType.Fragment; break;
|
|
}
|
|
|
|
using (FileStream FS = new FileStream(args[1], FileMode.Open, FileAccess.Read))
|
|
{
|
|
Memory Mem = new Memory(FS);
|
|
|
|
GlslProgram Program = Decompiler.Decompile(Mem, 0, ShaderType);
|
|
|
|
Console.WriteLine(Program.Code);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Usage: Ryujinx.ShaderTools [v|tc|te|g|f] shader.bin");
|
|
}
|
|
}
|
|
}
|
|
}
|