summaryrefslogtreecommitdiffstats
path: root/src/core/hw/gpu.h
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2014-12-28 23:28:58 +0100
committerTony Wasserka <NeoBrainX@gmail.com>2014-12-31 16:32:55 +0100
commit18a5e888bbeda989aba6576e7dd7e2b6c09b45ea (patch)
tree7f3fad5c0c5a78a171a5818fcc5df067423f63ff /src/core/hw/gpu.h
parentPica/Rasterizer: Implement backface culling. (diff)
downloadyuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.tar
yuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.tar.gz
yuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.tar.bz2
yuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.tar.lz
yuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.tar.xz
yuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.tar.zst
yuzu-18a5e888bbeda989aba6576e7dd7e2b6c09b45ea.zip
Diffstat (limited to 'src/core/hw/gpu.h')
-rw-r--r--src/core/hw/gpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h
index 292f496c1..7de055232 100644
--- a/src/core/hw/gpu.h
+++ b/src/core/hw/gpu.h
@@ -157,6 +157,9 @@ struct Regs {
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;
};
INSERT_PADDING_WORDS(0x1);