summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-18 16:45:58 +0100
committerGitHub <noreply@github.com>2018-12-18 16:45:58 +0100
commit325dcf28819a76a8bc63cf32cf32a682b80ccae2 (patch)
tree9b4f51b8e923968293a4556949efef9c8d6bf6c3
parentMerge pull request #1889 from DarkLordZach/swkbd-state-changed (diff)
parentshader_bytecode: Fixup half float's operator B encoding (diff)
downloadyuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar.gz
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar.bz2
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar.lz
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar.xz
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar.zst
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.zip
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 5198cd268..2efeb6e1a 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -609,7 +609,7 @@ union Instruction {
BitField<31, 1, u64> negate_b;
BitField<30, 1, u64> abs_b;
- BitField<47, 2, HalfType> type_b;
+ BitField<28, 2, HalfType> type_b;
BitField<35, 2, HalfType> type_c;
} alu_half;