summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-02-03 03:44:38 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-02-03 04:25:40 +0100
commit9feb68085d05a265fd9ec7f26791390516cd3bd6 (patch)
treefff3e69a9b3408596e44dd1abdc2e6a398d6e613 /src/video_core/engines
parentshader_ir/memory: Add LD_L 64 bits loads (diff)
downloadyuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar
yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.gz
yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.bz2
yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.lz
yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.xz
yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.zst
yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.zip
Diffstat (limited to 'src/video_core/engines')
-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 713b01c9f..2f5a966d2 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -217,9 +217,9 @@ enum class StoreType : u64 {
Signed8 = 1,
Unsigned16 = 2,
Signed16 = 3,
- Bytes32 = 4,
- Bytes64 = 5,
- Bytes128 = 6,
+ Bits32 = 4,
+ Bits64 = 5,
+ Bits128 = 6,
};
enum class IMinMaxExchange : u64 {