summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2018-12-18 10:45:58 -0500
committerGravatar GitHub2018-12-18 10:45:58 -0500
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.gz
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.tar.xz
yuzu-325dcf28819a76a8bc63cf32cf32a682b80ccae2.zip
Merge pull request #1917 from ReinUsesLisp/fixup-half
shader_bytecode: Fixup half float's operator B encoding
Diffstat (limited to '')
-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 {
609 609
610 BitField<31, 1, u64> negate_b; 610 BitField<31, 1, u64> negate_b;
611 BitField<30, 1, u64> abs_b; 611 BitField<30, 1, u64> abs_b;
612 BitField<47, 2, HalfType> type_b; 612 BitField<28, 2, HalfType> type_b;
613 613
614 BitField<35, 2, HalfType> type_c; 614 BitField<35, 2, HalfType> type_c;
615 } alu_half; 615 } alu_half;