summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-02-05 15:17:48 +0100
committerGitHub <noreply@github.com>2019-02-05 15:17:48 +0100
commit72c70d6808b86bd1eb602a18cd6c987e60c58447 (patch)
treeeba3de0edf0ee35c137f6f0623875b99643edfe0 /src/video_core/engines/shader_bytecode.h
parentMerge pull request #2082 from FernandoS27/txq-stl (diff)
parentshader_ir/memory: Add ST_L 64 and 128 bits stores (diff)
downloadyuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.tar
yuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.tar.gz
yuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.tar.bz2
yuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.tar.lz
yuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.tar.xz
yuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.tar.zst
yuzu-72c70d6808b86bd1eb602a18cd6c987e60c58447.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 8e915e2ae..269df9437 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 {