summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-03 03:44:46 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-08 00:08:41 +0100
commit56e237d1f998a4090afb6763222cd65593b299d7 (patch)
treeb40d10b0b12b210e5b9ddf28324267bf210f9fd7 /src/video_core/shader/node.h
parentgl_shader_decompiler: Reimplement shuffles with platform agnostic intrinsics (diff)
downloadyuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.gz
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.bz2
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.lz
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.xz
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.zst
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.zip
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