mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 09:55:45 +00:00
shader: Implement DADD
This commit is contained in:
parent
3c7ec88397
commit
832f1169d6
8 changed files with 132 additions and 14 deletions
|
@ -94,6 +94,8 @@ Id EmitContext::Def(const IR::Value& value) {
|
|||
return Constant(U32[1], value.U32());
|
||||
case IR::Type::F32:
|
||||
return Constant(F32[1], value.F32());
|
||||
case IR::Type::F64:
|
||||
return Constant(F64[1], value.F64());
|
||||
default:
|
||||
throw NotImplementedException("Immediate type {}", value.Type());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue