diff options
| author | 2015-07-19 21:30:42 -0500 | |
|---|---|---|
| committer | 2015-07-19 21:30:42 -0500 | |
| commit | 63dbff9b1f2cd6f330c8b4aee8e35d1c61cec87e (patch) | |
| tree | 2843ccd7323844bf6d3c17417c6af4d426571df7 /src/core/hw/gpu.h | |
| parent | Merge pull request #949 from yuriks/fix-st (diff) | |
| download | yuzu-63dbff9b1f2cd6f330c8b4aee8e35d1c61cec87e.tar.gz yuzu-63dbff9b1f2cd6f330c8b4aee8e35d1c61cec87e.tar.xz yuzu-63dbff9b1f2cd6f330c8b4aee8e35d1c61cec87e.zip | |
GPU/DisplayTransfer: Implemented bit 5 in the transfer flags.
It tells the GPU to not swizzle/de-swizzle the input during the transfer.
Diffstat (limited to 'src/core/hw/gpu.h')
| -rw-r--r-- | src/core/hw/gpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index 5b8c43f8b..daad506fe 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h | |||
| @@ -203,6 +203,7 @@ struct Regs { | |||
| 203 | BitField< 0, 1, u32> flip_vertically; // flips input data vertically | 203 | BitField< 0, 1, u32> flip_vertically; // flips input data vertically |
| 204 | BitField< 1, 1, u32> output_tiled; // Converts from linear to tiled format | 204 | BitField< 1, 1, u32> output_tiled; // Converts from linear to tiled format |
| 205 | BitField< 3, 1, u32> raw_copy; // Copies the data without performing any processing | 205 | BitField< 3, 1, u32> raw_copy; // Copies the data without performing any processing |
| 206 | BitField< 5, 1, u32> dont_swizzle; | ||
| 206 | BitField< 8, 3, PixelFormat> input_format; | 207 | BitField< 8, 3, PixelFormat> input_format; |
| 207 | BitField<12, 3, PixelFormat> output_format; | 208 | BitField<12, 3, PixelFormat> output_format; |
| 208 | 209 | ||