aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-02 23:44:46 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-07 20:08:41 -0300
commit56e237d1f998a4090afb6763222cd65593b299d7 (patch)
treeb40d10b0b12b210e5b9ddf28324267bf210f9fd7 /src/video_core/shader/node.h
parent08b2b1080a2e5794c65ebb999c435f6eb9d1aa26 (diff)
shader_ir/warp: Implement FSWZADD
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index bd3547e0d..54217e6a4 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -47,6 +47,7 @@ enum class OperationCode {
FTrunc, /// (MetaArithmetic, float a) -> float
FCastInteger, /// (MetaArithmetic, int a) -> float
FCastUInteger, /// (MetaArithmetic, uint a) -> float
+ FSwizzleAdd, /// (float a, float b, uint mask) -> float
IAdd, /// (MetaArithmetic, int a, int b) -> int
IMul, /// (MetaArithmetic, int a, int b) -> int