diff options
| author | 2019-08-27 23:39:38 -0300 | |
|---|---|---|
| committer | 2019-08-27 23:40:40 -0300 | |
| commit | b13fbc25b8c0b7abdac52d481abbc5ba58166aca (patch) | |
| tree | 4ceb0088160f4ce3a8ca5cef566ca8c672025867 /src/video_core/engines | |
| parent | Merge pull request #2748 from FernandoS27/align-memory (diff) | |
| download | yuzu-b13fbc25b8c0b7abdac52d481abbc5ba58166aca.tar.gz yuzu-b13fbc25b8c0b7abdac52d481abbc5ba58166aca.tar.xz yuzu-b13fbc25b8c0b7abdac52d481abbc5ba58166aca.zip | |
shader_ir/conversion: Implement F2I F16 Ra.H1
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index aaa1acea9..35201c8be 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -1006,7 +1006,7 @@ union Instruction { | |||
| 1006 | } iset; | 1006 | } iset; |
| 1007 | 1007 | ||
| 1008 | union { | 1008 | union { |
| 1009 | BitField<41, 2, u64> selector; // i2i and i2f only | 1009 | BitField<41, 2, u64> selector; |
| 1010 | BitField<45, 1, u64> negate_a; | 1010 | BitField<45, 1, u64> negate_a; |
| 1011 | BitField<49, 1, u64> abs_a; | 1011 | BitField<49, 1, u64> abs_a; |
| 1012 | BitField<10, 2, Register::Size> src_size; | 1012 | BitField<10, 2, Register::Size> src_size; |
| @@ -1031,7 +1031,6 @@ union Instruction { | |||
| 1031 | return static_cast<F2fRoundingOp>(rounding.Value() & rounding_mask); | 1031 | return static_cast<F2fRoundingOp>(rounding.Value() & rounding_mask); |
| 1032 | } | 1032 | } |
| 1033 | } f2f; | 1033 | } f2f; |
| 1034 | |||
| 1035 | } conversion; | 1034 | } conversion; |
| 1036 | 1035 | ||
| 1037 | union { | 1036 | union { |