GPU: Implemented the flip_data (bit 0) bit in display transfers.

This commit is contained in:
Subv 2015-03-14 14:40:40 -05:00
parent ed5b275d21
commit fb8f47060b
2 changed files with 15 additions and 6 deletions

View file

@ -191,7 +191,7 @@ struct Regs {
union {
u32 flags;
BitField< 0, 1, u32> flip_data; // flips input data horizontally (TODO) if true
BitField< 0, 1, u32> flip_vertically; // flips input data vertically
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;