mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-03-03 14:23:04 +00:00
shader: Implement LEA
This commit is contained in:
@@ -30,8 +30,8 @@ void EmitBitCastF64U64(EmitContext&) {
|
||||
throw NotImplementedException("SPIR-V Instruction");
|
||||
}
|
||||
|
||||
void EmitPackUint2x32(EmitContext&) {
|
||||
throw NotImplementedException("SPIR-V Instruction");
|
||||
Id EmitPackUint2x32(EmitContext& ctx, Id value) {
|
||||
return ctx.OpBitcast(ctx.U64, value);
|
||||
}
|
||||
|
||||
Id EmitUnpackUint2x32(EmitContext& ctx, Id value) {
|
||||
|
||||
Reference in New Issue
Block a user