summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-02-25 05:04:22 +0100
committerGitHub <noreply@github.com>2019-02-25 05:04:22 +0100
commitc07987dfab78e32a14ea3cb883f71323c99ad034 (patch)
tree1da5948cc12c8261b5e740ce14d3cccee78e0536 /src/video_core/engines/shader_bytecode.h
parentMerge pull request #2119 from FernandoS27/fix-copy (diff)
parentshader_decompiler: Improve Accuracy of Attribute Interpolation. (diff)
downloadyuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.tar
yuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.tar.gz
yuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.tar.bz2
yuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.tar.lz
yuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.tar.xz
yuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.tar.zst
yuzu-c07987dfab78e32a14ea3cb883f71323c99ad034.zip
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 1f425f90b..252592edd 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -376,9 +376,9 @@ enum class R2pMode : u64 {
};
enum class IpaInterpMode : u64 {
- Linear = 0,
- Perspective = 1,
- Flat = 2,
+ Pass = 0,
+ Multiply = 1,
+ Constant = 2,
Sc = 3,
};