From 5440b9c634555c174a9eaf7fd6d308c4ab2cb3bb Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 9 Jun 2018 00:01:17 -0400 Subject: gl_shader_decompiler: Implement SHR instruction. --- src/video_core/engines/shader_bytecode.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/video_core/engines') diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 32800392b..a9ea550dc 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -259,6 +259,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; -- cgit v1.2.3