vk_shader_compiler: Implement the decompiler in SPIR-V

This commit is contained in:
Fernando Sahmkow
2019-08-25 15:32:00 -04:00
committed by FernandoS27
parent 0366c18d87
commit ca9901867e
3 changed files with 301 additions and 23 deletions

View File

@ -151,6 +151,10 @@ public:
return decompiled;
}
const ASTManager& GetASTManager() const {
return program_manager;
}
ASTNode GetASTProgram() const {
return program_manager.GetProgram();
}