diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-20 17:25:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-20 17:25:08 -0400 |
| commit | 0a67416971c15b205f61e5db4ec5955b49638774 (patch) | |
| tree | b4e2498af98cfa334b801b5b71263a0330579cc0 /src/video_core/shader/node.h | |
| parent | 369be67039374ef7646c0d4245c042bc34f894b2 (diff) | |
| parent | 45c162444d357e18b333e94973a39b9d71c7604d (diff) | |
Merge pull request #2693 from ReinUsesLisp/hsetp2
shader/half_set_predicate: Implement missing HSETP2 variants
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 7427ed896..715184d67 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h @@ -101,8 +101,7 @@ enum class OperationCode { LogicalXor, /// (bool a, bool b) -> bool LogicalNegate, /// (bool a) -> bool LogicalPick2, /// (bool2 pair, uint index) -> bool - LogicalAll2, /// (bool2 a) -> bool - LogicalAny2, /// (bool2 a) -> bool + LogicalAnd2, /// (bool2 a) -> bool LogicalFLessThan, /// (float a, float b) -> bool LogicalFEqual, /// (float a, float b) -> bool |
