summaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-07-19 22:20:34 -0300
committerGravatar ReinUsesLisp2019-07-19 22:21:22 -0300
commit45c162444d357e18b333e94973a39b9d71c7604d (patch)
tree9569153bbb3968678b36979e0682c05e992c610c /src/video_core/shader/node.h
parentshader/half_set_predicate: Implement missing HSETP2 variants (diff)
downloadyuzu-45c162444d357e18b333e94973a39b9d71c7604d.tar.gz
yuzu-45c162444d357e18b333e94973a39b9d71c7604d.tar.xz
yuzu-45c162444d357e18b333e94973a39b9d71c7604d.zip
shader/half_set_predicate: Fix HSETP2 implementation
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h3
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 {
101 LogicalXor, /// (bool a, bool b) -> bool 101 LogicalXor, /// (bool a, bool b) -> bool
102 LogicalNegate, /// (bool a) -> bool 102 LogicalNegate, /// (bool a) -> bool
103 LogicalPick2, /// (bool2 pair, uint index) -> bool 103 LogicalPick2, /// (bool2 pair, uint index) -> bool
104 LogicalAll2, /// (bool2 a) -> bool 104 LogicalAnd2, /// (bool2 a) -> bool
105 LogicalAny2, /// (bool2 a) -> bool
106 105
107 LogicalFLessThan, /// (float a, float b) -> bool 106 LogicalFLessThan, /// (float a, float b) -> bool
108 LogicalFEqual, /// (float a, float b) -> bool 107 LogicalFEqual, /// (float a, float b) -> bool