diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-12 18:59:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-12 18:59:15 -0700 |
| commit | 64b5e5d5d940436c38c51c6da0796b58001f6dde (patch) | |
| tree | 486a01886b784083646a025a29179f15e8bd5bd1 /src/video_core/engines/shader_bytecode.h | |
| parent | 52636f67ccbda50920a3aae10112fdecdbed82fb (diff) | |
| parent | 49c0c081c47fd0b56f4e026e8a6998dff20b32c4 (diff) | |
Merge pull request #655 from bunnei/pred-lt-nan
gl_shader_decompiler: Implement PredCondition::LessThanWithNan.
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 2ec1de285..65fa1495f 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -142,6 +142,7 @@ enum class PredCondition : u64 { GreaterThan = 4, NotEqual = 5, GreaterEqual = 6, + LessThanWithNan = 9, NotEqualWithNan = 13, // TODO(Subv): Other condition types }; |
