summaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-11-02 23:44:46 -0300
committerGravatar ReinUsesLisp2019-11-07 20:08:41 -0300
commit56e237d1f998a4090afb6763222cd65593b299d7 (patch)
treeb40d10b0b12b210e5b9ddf28324267bf210f9fd7 /src/video_core/shader/node.h
parentgl_shader_decompiler: Reimplement shuffles with platform agnostic intrinsics (diff)
downloadyuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.gz
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.tar.xz
yuzu-56e237d1f998a4090afb6763222cd65593b299d7.zip
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 {
47 FTrunc, /// (MetaArithmetic, float a) -> float 47 FTrunc, /// (MetaArithmetic, float a) -> float
48 FCastInteger, /// (MetaArithmetic, int a) -> float 48 FCastInteger, /// (MetaArithmetic, int a) -> float
49 FCastUInteger, /// (MetaArithmetic, uint a) -> float 49 FCastUInteger, /// (MetaArithmetic, uint a) -> float
50 FSwizzleAdd, /// (float a, float b, uint mask) -> float
50 51
51 IAdd, /// (MetaArithmetic, int a, int b) -> int 52 IAdd, /// (MetaArithmetic, int a, int b) -> int
52 IMul, /// (MetaArithmetic, int a, int b) -> int 53 IMul, /// (MetaArithmetic, int a, int b) -> int