diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-04-25 21:56:11 -0300 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-04-25 22:55:26 -0300 |
| commit | 255197e64363f9286ed145cafdeb129c85c16621 (patch) | |
| tree | 976cb93129b86277b8136f21f3c7c2492bb8694d /src/video_core/shader/node.h | |
| parent | ffc5ec6fa816b1bf56044b9d8cf5f1935abe77ee (diff) | |
shader/arithmetic_integer: Implement CC for IADD
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 3eee961f5..3f5a7bc7a 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h @@ -132,6 +132,8 @@ enum class OperationCode { LogicalUNotEqual, /// (uint a, uint b) -> bool LogicalUGreaterEqual, /// (uint a, uint b) -> bool + LogicalAddCarry, /// (uint a, uint b) -> bool + Logical2HLessThan, /// (MetaHalfArithmetic, f16vec2 a, f16vec2) -> bool2 Logical2HEqual, /// (MetaHalfArithmetic, f16vec2 a, f16vec2) -> bool2 Logical2HLessEqual, /// (MetaHalfArithmetic, f16vec2 a, f16vec2) -> bool2 |
