diff options
author | Subv <subv2112@gmail.com> | 2018-06-19 02:50:35 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-06-19 02:50:35 +0200 |
commit | eab7457c00e4ab21ea2533441de03ff9cdda5ff3 (patch) | |
tree | f187d57807adbca8cbf87f3d2fe9915f06b09224 /src/video_core/engines/shader_bytecode.h | |
parent | Merge pull request #570 from bunnei/astc (diff) | |
download | yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.tar yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.tar.gz yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.tar.bz2 yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.tar.lz yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.tar.xz yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.tar.zst yuzu-eab7457c00e4ab21ea2533441de03ff9cdda5ff3.zip |
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index cefd57f4c..5ff861b04 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -526,6 +526,7 @@ public: enum class Type { Trivial, Arithmetic, + ArithmeticImmediate, ArithmeticInteger, ArithmeticIntegerImmediate, Bfe, @@ -655,7 +656,7 @@ private: INST("0100110001101---", Id::FMUL_C, Type::Arithmetic, "FMUL_C"), INST("0101110001101---", Id::FMUL_R, Type::Arithmetic, "FMUL_R"), INST("0011100-01101---", Id::FMUL_IMM, Type::Arithmetic, "FMUL_IMM"), - INST("00011110--------", Id::FMUL32_IMM, Type::Arithmetic, "FMUL32_IMM"), + INST("00011110--------", Id::FMUL32_IMM, Type::ArithmeticImmediate, "FMUL32_IMM"), INST("0100110000010---", Id::IADD_C, Type::ArithmeticInteger, "IADD_C"), INST("0101110000010---", Id::IADD_R, Type::ArithmeticInteger, "IADD_R"), INST("0011100-00010---", Id::IADD_IMM, Type::ArithmeticInteger, "IADD_IMM"), @@ -676,7 +677,7 @@ private: INST("0100110010011---", Id::MOV_C, Type::Arithmetic, "MOV_C"), INST("0101110010011---", Id::MOV_R, Type::Arithmetic, "MOV_R"), INST("0011100-10011---", Id::MOV_IMM, Type::Arithmetic, "MOV_IMM"), - INST("000000010000----", Id::MOV32_IMM, Type::Arithmetic, "MOV32_IMM"), + INST("000000010000----", Id::MOV32_IMM, Type::ArithmeticImmediate, "MOV32_IMM"), INST("0100110001100---", Id::FMNMX_C, Type::Arithmetic, "FMNMX_C"), INST("0101110001100---", Id::FMNMX_R, Type::Arithmetic, "FMNMX_R"), INST("0011100-01100---", Id::FMNMX_IMM, Type::Arithmetic, "FMNMX_IMM"), |