diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-20 23:25:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-20 23:25:08 +0200 |
commit | 0a67416971c15b205f61e5db4ec5955b49638774 (patch) | |
tree | b4e2498af98cfa334b801b5b71263a0330579cc0 /src/video_core/shader/node.h | |
parent | Update README.md (diff) | |
parent | shader/half_set_predicate: Fix HSETP2 implementation (diff) | |
download | yuzu-0a67416971c15b205f61e5db4ec5955b49638774.tar yuzu-0a67416971c15b205f61e5db4ec5955b49638774.tar.gz yuzu-0a67416971c15b205f61e5db4ec5955b49638774.tar.bz2 yuzu-0a67416971c15b205f61e5db4ec5955b49638774.tar.lz yuzu-0a67416971c15b205f61e5db4ec5955b49638774.tar.xz yuzu-0a67416971c15b205f61e5db4ec5955b49638774.tar.zst yuzu-0a67416971c15b205f61e5db4ec5955b49638774.zip |
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 |