diff options
| author | 2015-03-14 14:40:40 -0500 | |
|---|---|---|
| committer | 2015-03-14 15:26:42 -0500 | |
| commit | fb8f47060bb9c7d6b77824a50782e05b37ad0281 (patch) | |
| tree | a8aa4a3e4e59265b56ed550d8adcd48e420c2745 /src/core/hw/gpu.h | |
| parent | Merge pull request #642 from bunnei/touchpad (diff) | |
| download | yuzu-fb8f47060bb9c7d6b77824a50782e05b37ad0281.tar.gz yuzu-fb8f47060bb9c7d6b77824a50782e05b37ad0281.tar.xz yuzu-fb8f47060bb9c7d6b77824a50782e05b37ad0281.zip | |
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; |