Merge pull request #655 from bunnei/pred-lt-nan

gl_shader_decompiler: Implement PredCondition::LessThanWithNan.
This commit is contained in:
bunnei 2018-07-12 18:59:15 -07:00 committed by GitHub
commit 64b5e5d5d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View file

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