summaryrefslogtreecommitdiffstats
path: root/src/core/hw/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-07-20 04:42:44 +0200
committerbunnei <bunneidev@gmail.com>2015-07-20 04:42:44 +0200
commit863a963911160f7d336379ed661fe8be5bebdd20 (patch)
treefbad75ed554c31704a6656a25251b557bf608caa /src/core/hw/gpu.h
parentMerge pull request #944 from Subv/spam (diff)
parentGPU/DisplayTransfer: Implemented bit 5 in the transfer flags. (diff)
downloadyuzu-863a963911160f7d336379ed661fe8be5bebdd20.tar
yuzu-863a963911160f7d336379ed661fe8be5bebdd20.tar.gz
yuzu-863a963911160f7d336379ed661fe8be5bebdd20.tar.bz2
yuzu-863a963911160f7d336379ed661fe8be5bebdd20.tar.lz
yuzu-863a963911160f7d336379ed661fe8be5bebdd20.tar.xz
yuzu-863a963911160f7d336379ed661fe8be5bebdd20.tar.zst
yuzu-863a963911160f7d336379ed661fe8be5bebdd20.zip
Diffstat (limited to 'src/core/hw/gpu.h')
-rw-r--r--src/core/hw/gpu.h1
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 {
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< 5, 1, u32> dont_swizzle;
BitField< 8, 3, PixelFormat> input_format;
BitField<12, 3, PixelFormat> output_format;