diff options
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 141b9159b..b09ea3318 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -579,6 +579,10 @@ union Instruction { | |||
| 579 | } fmul32; | 579 | } fmul32; |
| 580 | 580 | ||
| 581 | union { | 581 | union { |
| 582 | BitField<52, 1, u64> generates_cc; | ||
| 583 | } op_32; | ||
| 584 | |||
| 585 | union { | ||
| 582 | BitField<48, 1, u64> is_signed; | 586 | BitField<48, 1, u64> is_signed; |
| 583 | } shift; | 587 | } shift; |
| 584 | 588 | ||
| @@ -1658,4 +1662,4 @@ private: | |||
| 1658 | } | 1662 | } |
| 1659 | }; | 1663 | }; |
| 1660 | 1664 | ||
| 1661 | } // namespace Tegra::Shader \ No newline at end of file | 1665 | } // namespace Tegra::Shader |