mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:09:59 +00:00
glsl: Simplify FCMP emission
This commit is contained in:
parent
79d2684261
commit
56c30dd9e0
1 changed files with 4 additions and 6 deletions
|
@ -13,12 +13,10 @@ namespace Shader::Backend::GLSL {
|
||||||
namespace {
|
namespace {
|
||||||
void Compare(EmitContext& ctx, IR::Inst& inst, std::string_view lhs, std::string_view rhs,
|
void Compare(EmitContext& ctx, IR::Inst& inst, std::string_view lhs, std::string_view rhs,
|
||||||
std::string_view op, bool ordered) {
|
std::string_view op, bool ordered) {
|
||||||
ctx.AddU1("{}={}{}{}", inst, lhs, op, rhs, lhs, rhs);
|
const auto nan_op{ordered ? "&&!" : "||"};
|
||||||
if (ordered) {
|
ctx.AddU1("{}={}{}{}"
|
||||||
ctx.Add("&&!isnan({})&&!isnan({});", lhs, rhs);
|
"{}isnan({}){}isnan({});",
|
||||||
} else {
|
inst, lhs, op, rhs, nan_op, lhs, nan_op, rhs);
|
||||||
ctx.Add("||isnan({})||isnan({});", lhs, rhs);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsPrecise(const IR::Inst& inst) {
|
bool IsPrecise(const IR::Inst& inst) {
|
||||||
|
|
Loading…
Reference in a new issue