mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 09:55:45 +00:00
spirv: Add lower fp16 to fp32 pass
This commit is contained in:
parent
a5f87011d3
commit
a2fe90fa60
32 changed files with 479 additions and 285 deletions
|
@ -216,6 +216,10 @@ void Inst::ReplaceUsesWith(Value replacement) {
|
|||
}
|
||||
}
|
||||
|
||||
void Inst::ReplaceOpcode(IR::Opcode opcode) {
|
||||
op = opcode;
|
||||
}
|
||||
|
||||
void Inst::Use(const Value& value) {
|
||||
Inst* const inst{value.Inst()};
|
||||
++inst->use_count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue