Add shader decompiler files

This commit is contained in:
wheremyfoodat 2024-07-21 17:52:06 +03:00
parent ec754f5820
commit 8fc61cdb7b
3 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include <string>
#include "PICA/shader.hpp"
#include "PICA/shader_gen_types.hpp"
namespace PICA::ShaderGen {
std::string decompileShader(PICAShader& shaderUnit);
}