diff options
author | Subv <subv2112@gmail.com> | 2015-02-24 00:24:35 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-02-27 03:17:14 +0100 |
commit | c564c21668912b803947adddc166ff1315b218e4 (patch) | |
tree | df5cf2de4044864e0b6698427d68daacba71937e /src/core/hw/gpu.h | |
parent | Merge pull request #612 from yuriks/fix-A4 (diff) | |
download | yuzu-c564c21668912b803947adddc166ff1315b218e4.tar yuzu-c564c21668912b803947adddc166ff1315b218e4.tar.gz yuzu-c564c21668912b803947adddc166ff1315b218e4.tar.bz2 yuzu-c564c21668912b803947adddc166ff1315b218e4.tar.lz yuzu-c564c21668912b803947adddc166ff1315b218e4.tar.xz yuzu-c564c21668912b803947adddc166ff1315b218e4.tar.zst yuzu-c564c21668912b803947adddc166ff1315b218e4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hw/gpu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index 75f524465..ab1dcf91d 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h @@ -192,12 +192,13 @@ struct Regs { u32 flags; BitField< 0, 1, u32> flip_data; // flips input data horizontally (TODO) if true + BitField< 1, 1, u32> output_tiled; // Converts from linear to tiled format + BitField< 3, 1, u32> raw_copy; // Copies the data without performing any processing BitField< 8, 3, PixelFormat> input_format; BitField<12, 3, PixelFormat> output_format; - BitField<16, 1, u32> output_tiled; // stores output in a tiled format - // TODO: Not really sure if this actually scales, or even resizes at all. BitField<24, 1, u32> scale_horizontally; + BitField<25, 1, u32> scale_vertically; }; INSERT_PADDING_WORDS(0x1); |