diff options
| author | bunnei <bunneidev@gmail.com> | 2018-06-09 00:42:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-09 00:42:44 -0400 |
| commit | e2176dc7ce937e03c002342a1d5e9d8f61212215 (patch) | |
| tree | 6eb241cd96ae3d9be7e67acc29715c2403049264 /src/video_core/engines | |
| parent | 174c22e5f6a1fd93842a8e8fda6e63e676d34866 (diff) | |
| parent | 5440b9c634555c174a9eaf7fd6d308c4ab2cb3bb (diff) | |
Merge pull request #551 from bunnei/shr
gl_shader_decompiler: Implement SHR instruction.
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index dc3dd8a80..51dcc0d08 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -261,6 +261,10 @@ union Instruction { } alu; union { + BitField<48, 1, u64> is_signed; + } shift; + + union { BitField<39, 5, u64> shift_amount; BitField<48, 1, u64> negate_b; BitField<49, 1, u64> negate_a; |
