Merge pull request #1917 from ReinUsesLisp/fixup-half

shader_bytecode: Fixup half float's operator B encoding
merge-requests/60/head
bunnei 2018-12-18 10:45:58 +07:00 committed by GitHub
commit 325dcf2881
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -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;