mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:39:59 +00:00
dual_vertex_pass: Clang format
This commit is contained in:
parent
dbee32d302
commit
57f222c56e
1 changed files with 14 additions and 14 deletions
|
@ -14,23 +14,23 @@
|
||||||
namespace Shader::Optimization {
|
namespace Shader::Optimization {
|
||||||
|
|
||||||
void VertexATransformPass(IR::Program& program) {
|
void VertexATransformPass(IR::Program& program) {
|
||||||
for (IR::Block* const block : program.blocks) {
|
for (IR::Block* const block : program.blocks) {
|
||||||
for (IR::Inst& inst : block->Instructions()) {
|
for (IR::Inst& inst : block->Instructions()) {
|
||||||
if (inst.GetOpcode() == IR::Opcode::Epilogue) {
|
if (inst.GetOpcode() == IR::Opcode::Epilogue) {
|
||||||
return inst.Invalidate();
|
return inst.Invalidate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void VertexBTransformPass(IR::Program& program) {
|
void VertexBTransformPass(IR::Program& program) {
|
||||||
for (IR::Block* const block : program.blocks) {
|
for (IR::Block* const block : program.blocks) {
|
||||||
for (IR::Inst& inst : block->Instructions()) {
|
for (IR::Inst& inst : block->Instructions()) {
|
||||||
if (inst.GetOpcode() == IR::Opcode::Prologue) {
|
if (inst.GetOpcode() == IR::Opcode::Prologue) {
|
||||||
return inst.Invalidate();
|
return inst.Invalidate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Shader::Optimization
|
} // namespace Shader::Optimization
|
||||||
|
|
Loading…
Reference in a new issue