spirv: Fix implicit lod type

This commit is contained in:
ReinUsesLisp
2021-04-17 03:19:54 -03:00
committed by ameerj
parent 7cfa403683
commit c9e4609d87
2 changed files with 5 additions and 1 deletions

View File

@ -101,6 +101,10 @@ public:
return Constant(U32[1], value);
}
Id Const(f32 value) {
return Constant(F32[1], value);
}
Id Const(u32 element_1, u32 element_2) {
return ConstantComposite(U32[2], Const(element_1), Const(element_2));
}