glsl: Add many FP32/64 instructions

This commit is contained in:
ameerj 2021-05-22 01:52:03 -04:00
parent fc7cb28bc7
commit 1dae770c9d
12 changed files with 1011 additions and 765 deletions

View file

@ -78,8 +78,12 @@ std::string RegAlloc::GetType(Type type, u32 index) {
return "int ";
case Type::F32:
return "float ";
case Type::S64:
return "int64_t ";
case Type::U64:
return "uint64_t ";
case Type::F64:
return "double ";
case Type::U32x2:
return "uvec2 ";
case Type::F32x2: