mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 15:07:56 -05:00
shader: Constant propagation and global memory to storage buffer
This commit is contained in:
@ -16,9 +16,11 @@ void Invoke(Func&& func, IR::Function& function) {
|
||||
}
|
||||
}
|
||||
|
||||
void ConstantPropagationPass(IR::Block& block);
|
||||
void DeadCodeEliminationPass(IR::Block& block);
|
||||
void IdentityRemovalPass(IR::Block& block);
|
||||
void GlobalMemoryToStorageBufferPass(IR::Block& block);
|
||||
void IdentityRemovalPass(IR::Function& function);
|
||||
void SsaRewritePass(IR::Function& function);
|
||||
void VerificationPass(const IR::Block& block);
|
||||
void VerificationPass(const IR::Function& function);
|
||||
|
||||
} // namespace Shader::Optimization
|
||||
|
Reference in New Issue
Block a user