diff options
| author | 2021-02-19 18:10:18 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:22 -0400 | |
| commit | 6db69990da9f232e6d982cdcb69c2e27d93075cf (patch) | |
| tree | 9367909cd030622ea36c4cadccd2fabc6f28d471 /src/shader_recompiler/ir_opt/passes.h | |
| parent | shader: Primitive Vulkan integration (diff) | |
| download | yuzu-6db69990da9f232e6d982cdcb69c2e27d93075cf.tar.gz yuzu-6db69990da9f232e6d982cdcb69c2e27d93075cf.tar.xz yuzu-6db69990da9f232e6d982cdcb69c2e27d93075cf.zip | |
spirv: Add lower fp16 to fp32 pass
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/ir_opt/passes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/ir_opt/passes.h b/src/shader_recompiler/ir_opt/passes.h index 89e5811d3..38106308c 100644 --- a/src/shader_recompiler/ir_opt/passes.h +++ b/src/shader_recompiler/ir_opt/passes.h | |||
| @@ -24,6 +24,7 @@ void ConstantPropagationPass(IR::Block& block); | |||
| 24 | void DeadCodeEliminationPass(IR::Block& block); | 24 | void DeadCodeEliminationPass(IR::Block& block); |
| 25 | void GlobalMemoryToStorageBufferPass(IR::Program& program); | 25 | void GlobalMemoryToStorageBufferPass(IR::Program& program); |
| 26 | void IdentityRemovalPass(IR::Function& function); | 26 | void IdentityRemovalPass(IR::Function& function); |
| 27 | void LowerFp16ToFp32(IR::Program& program); | ||
| 27 | void SsaRewritePass(std::span<IR::Block* const> post_order_blocks); | 28 | void SsaRewritePass(std::span<IR::Block* const> post_order_blocks); |
| 28 | void VerificationPass(const IR::Function& function); | 29 | void VerificationPass(const IR::Function& function); |
| 29 | 30 | ||