diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-18 20:51:05 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-01-15 17:54:49 -0300 |
commit | 294df41b86c0978f6ae0845a4f61ed5997e05a5f (patch) | |
tree | 3b93e4d16a252d9de19fefdf138156e48791d0c2 | |
parent | a0c8c16d07ba365f573cf4b856e471bd0366be0e (diff) |
shader_bytecode: Fixup encoding
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
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 e53c77f2b..e62b66acd 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<28, 2, HalfType> type_b; + BitField<28 , 2, HalfType> type_b; BitField<35, 2, HalfType> type_c; } alu_half; |