diff options
author | Nguyen Dac Nam <nam.kazt.91@gmail.com> | 2020-03-13 06:52:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 06:52:16 +0100 |
commit | 93547cac68ac5433c1080b53abe9822045f07604 (patch) | |
tree | 57477e856dadea063ef19d2757d338fc2c681248 /src/video_core | |
parent | node_helper: add IBitfieldExtract case (diff) | |
download | yuzu-93547cac68ac5433c1080b53abe9822045f07604.tar yuzu-93547cac68ac5433c1080b53abe9822045f07604.tar.gz yuzu-93547cac68ac5433c1080b53abe9822045f07604.tar.bz2 yuzu-93547cac68ac5433c1080b53abe9822045f07604.tar.lz yuzu-93547cac68ac5433c1080b53abe9822045f07604.tar.xz yuzu-93547cac68ac5433c1080b53abe9822045f07604.tar.zst yuzu-93547cac68ac5433c1080b53abe9822045f07604.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index c9bc83cd7..eba42deb4 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -911,14 +911,9 @@ union Instruction { } fadd32i; union { - BitField<20, 8, u64> shift_position; - BitField<28, 8, u64> shift_length; - BitField<48, 1, u64> negate_b; - BitField<49, 1, u64> negate_a; - - u64 GetLeftShiftValue() const { - return 32 - (shift_position + shift_length); - } + BitField<40, 1, u64> brev; + BitField<47, 1, u64> rd_cc; + BitField<48, 1, u64> is_signed; } bfe; union { |