mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 10:58:00 -05:00
glsl: More FP instructions/fixes
This commit is contained in:
@ -30,11 +30,11 @@ std::string MakeImm(const IR::Value& value) {
|
||||
case IR::Type::U1:
|
||||
return fmt::format("{}", value.U1() ? "true" : "false");
|
||||
case IR::Type::U32:
|
||||
return fmt::format("{}", value.U32());
|
||||
return fmt::format("{}u", value.U32());
|
||||
case IR::Type::F32:
|
||||
return fmt::format("{}", value.F32());
|
||||
return fmt::format("{}f", value.F32());
|
||||
case IR::Type::U64:
|
||||
return fmt::format("{}", value.U64());
|
||||
return fmt::format("{}ul", value.U64());
|
||||
case IR::Type::F64:
|
||||
return fmt::format("{}", value.F64());
|
||||
default:
|
||||
|
Reference in New Issue
Block a user