blob: 445f6b46dba7411e4ae33c5bf37895f9643cf497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
using Ryujinx.Graphics.Shader;
using Ryujinx.Graphics.Shader.Translation;
using System;
using System.IO;
namespace Ryujinx.ShaderTools
{
class Program
{
static void Main(string[] args)
{
if (args.Length == 1 || args.Length == 2)
{
TranslationFlags flags = TranslationFlags.DebugMode;
if (args.Length == 2 && args[0] == "--compute")
{
flags |= TranslationFlags.Compute;
}
byte[] data = File.ReadAllBytes(args[args.Length - 1]);
string code = Translator.Translate(data, null, flags).Code;
Console.WriteLine(code);
}
else
{
Console.WriteLine("Usage: Ryujinx.ShaderTools [--compute] shader.bin");
}
}
}
}
|