From ae0dfcae1dc9532b349e14d76ce35d1fc987d42c Mon Sep 17 00:00:00 2001 From: Subv Date: Tue, 10 Mar 2015 14:18:25 -0500 Subject: GPU: Fixed the bit 25 in the display transfer flags. It is used to downscale the input image horizontally and vertically, previously we were only downscaling it vertically so this caused a hard-to-debug memory corruption problem. --- src/core/hw/gpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/hw/gpu.h') diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index 3e81f03e..3158738f 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h @@ -197,8 +197,8 @@ struct Regs { BitField< 8, 3, PixelFormat> input_format; BitField<12, 3, PixelFormat> output_format; - BitField<24, 1, u32> scale_horizontally; - BitField<25, 1, u32> scale_vertically; + BitField<24, 1, u32> scale_x; // Shrinks the image in half horizontally, blending the extra pixels + BitField<25, 1, u32> scale_xy; // Shrinks the image horizontally and vertically, blending the extra pixels }; INSERT_PADDING_WORDS(0x1); -- cgit v1.2.3