diff options
| author | 2015-03-14 23:11:29 -0400 | |
|---|---|---|
| committer | 2015-03-14 23:11:29 -0400 | |
| commit | 3e5aeb9a7abb74fb5492f8f93265c03f45c1757a (patch) | |
| tree | 598e8b31a39e7e6c94f6e63b5be487e69f9f3194 /src/core/hw/gpu.h | |
| parent | Merge pull request #658 from Subv/ref_temporary (diff) | |
| parent | GPU: Implemented the flip_data (bit 0) bit in display transfers. (diff) | |
| download | yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.gz yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.xz yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.zip | |
Merge pull request #657 from Subv/flip
GPU: Implemented the flip_data (bit 0) bit in display transfers.
Diffstat (limited to 'src/core/hw/gpu.h')
| -rw-r--r-- | src/core/hw/gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index 5b7f0a4e9..e8552d854 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h | |||
| @@ -191,7 +191,7 @@ struct Regs { | |||
| 191 | union { | 191 | union { |
| 192 | u32 flags; | 192 | u32 flags; |
| 193 | 193 | ||
| 194 | BitField< 0, 1, u32> flip_data; // flips input data horizontally (TODO) if true | 194 | BitField< 0, 1, u32> flip_vertically; // flips input data vertically |
| 195 | BitField< 1, 1, u32> output_tiled; // Converts from linear to tiled format | 195 | BitField< 1, 1, u32> output_tiled; // Converts from linear to tiled format |
| 196 | BitField< 3, 1, u32> raw_copy; // Copies the data without performing any processing | 196 | BitField< 3, 1, u32> raw_copy; // Copies the data without performing any processing |
| 197 | BitField< 8, 3, PixelFormat> input_format; | 197 | BitField< 8, 3, PixelFormat> input_format; |