diff options
| author | 2015-03-10 14:18:25 -0500 | |
|---|---|---|
| committer | 2015-03-10 14:18:25 -0500 | |
| commit | ae0dfcae1dc9532b349e14d76ce35d1fc987d42c (patch) | |
| tree | c04424b8f9764ba3e6d7659c423cdbdfe16de671 /src/core/hw/gpu.cpp | |
| parent | Merge pull request #643 from Subv/dem_feels (diff) | |
| download | yuzu-ae0dfcae1dc9532b349e14d76ce35d1fc987d42c.tar.gz yuzu-ae0dfcae1dc9532b349e14d76ce35d1fc987d42c.tar.xz yuzu-ae0dfcae1dc9532b349e14d76ce35d1fc987d42c.zip | |
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.
Diffstat (limited to 'src/core/hw/gpu.cpp')
| -rw-r--r-- | src/core/hw/gpu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp index b7102b874..e529bb2e8 100644 --- a/src/core/hw/gpu.cpp +++ b/src/core/hw/gpu.cpp | |||
| @@ -116,9 +116,9 @@ inline void Write(u32 addr, const T data) { | |||
| 116 | u8* src_pointer = Memory::GetPointer(Memory::PhysicalToVirtualAddress(config.GetPhysicalInputAddress())); | 116 | u8* src_pointer = Memory::GetPointer(Memory::PhysicalToVirtualAddress(config.GetPhysicalInputAddress())); |
| 117 | u8* dst_pointer = Memory::GetPointer(Memory::PhysicalToVirtualAddress(config.GetPhysicalOutputAddress())); | 117 | u8* dst_pointer = Memory::GetPointer(Memory::PhysicalToVirtualAddress(config.GetPhysicalOutputAddress())); |
| 118 | 118 | ||
| 119 | unsigned horizontal_scale = (config.scale_horizontally != 0) ? 2 : 1; | 119 | unsigned horizontal_scale = (config.scale_x != 0 || config.scale_xy != 0) ? 2 : 1; |
| 120 | unsigned vertical_scale = (config.scale_vertically != 0) ? 2 : 1; | 120 | unsigned vertical_scale = (config.scale_xy != 0) ? 2 : 1; |
| 121 | 121 | ||
| 122 | u32 output_width = config.output_width / horizontal_scale; | 122 | u32 output_width = config.output_width / horizontal_scale; |
| 123 | u32 output_height = config.output_height / vertical_scale; | 123 | u32 output_height = config.output_height / vertical_scale; |
| 124 | 124 | ||