gl_shader_decompiler: Implement predicate NotEqualWithNan.

This commit is contained in:
bunnei
2018-06-30 03:00:39 -04:00
parent 50ef2beb58
commit c96da97630
2 changed files with 24 additions and 17 deletions

View File

@ -142,6 +142,7 @@ enum class PredCondition : u64 {
GreaterThan = 4,
NotEqual = 5,
GreaterEqual = 6,
NotEqualWithNan = 13,
// TODO(Subv): Other condition types
};