summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-01 17:06:04 +0200
committerGitHub <noreply@github.com>2018-07-01 17:06:04 +0200
commit066d6184d453fdcf6e9a4622646a514e0cbccc53 (patch)
tree22d1d5a2f191416276b159b28bc1441946cba62d /src/video_core/engines
parentMerge pull request #601 from Subv/rgba32_ui (diff)
parentGPU: Corrected the size of the MUFU subop field, and removed incorrect "min" operation. (diff)
downloadyuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.tar
yuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.tar.gz
yuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.tar.bz2
yuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.tar.lz
yuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.tar.xz
yuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.tar.zst
yuzu-066d6184d453fdcf6e9a4622646a514e0cbccc53.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 0527fc376..86fd64979 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -166,7 +166,6 @@ enum class SubOp : u64 {
Lg2 = 0x3,
Rcp = 0x4,
Rsq = 0x5,
- Min = 0x8,
};
enum class F2iRoundingOp : u64 {
@@ -210,7 +209,7 @@ union Instruction {
} pred;
BitField<19, 1, u64> negate_pred;
BitField<20, 8, Register> gpr20;
- BitField<20, 7, SubOp> sub_op;
+ BitField<20, 4, SubOp> sub_op;
BitField<28, 8, Register> gpr28;
BitField<39, 8, Register> gpr39;
BitField<48, 16, u64> opcode;