summaryrefslogtreecommitdiffstats
path: root/src/core/hw/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-15 04:11:29 +0100
committerbunnei <bunneidev@gmail.com>2015-03-15 04:11:29 +0100
commit3e5aeb9a7abb74fb5492f8f93265c03f45c1757a (patch)
tree598e8b31a39e7e6c94f6e63b5be487e69f9f3194 /src/core/hw/gpu.h
parentMerge pull request #658 from Subv/ref_temporary (diff)
parentGPU: Implemented the flip_data (bit 0) bit in display transfers. (diff)
downloadyuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar
yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.gz
yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.bz2
yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.lz
yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.xz
yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.tar.zst
yuzu-3e5aeb9a7abb74fb5492f8f93265c03f45c1757a.zip
Diffstat (limited to 'src/core/hw/gpu.h')
-rw-r--r--src/core/hw/gpu.h2
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 {
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;