summaryrefslogtreecommitdiffstats
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-03-12 19:11:57 +0100
committerSubv <subv2112@gmail.com>2015-03-16 23:54:06 +0100
commit23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7 (patch)
tree4cda494f5705d6fb19216b11e4a95e5b99325d38 /src/core/hw/gpu.cpp
parentGPU: Fixed the bit 25 in the display transfer flags. (diff)
downloadyuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.tar
yuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.tar.gz
yuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.tar.bz2
yuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.tar.lz
yuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.tar.xz
yuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.tar.zst
yuzu-23b401c3ac6ac1ab9e9cf9ffa9d9a03daa20dfb7.zip
Diffstat (limited to '')
-rw-r--r--src/core/hw/gpu.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index e529bb2e8..ca33557ae 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -116,9 +116,15 @@ inline void Write(u32 addr, const T data) {
u8* src_pointer = Memory::GetPointer(Memory::PhysicalToVirtualAddress(config.GetPhysicalInputAddress()));
u8* dst_pointer = Memory::GetPointer(Memory::PhysicalToVirtualAddress(config.GetPhysicalOutputAddress()));
- unsigned horizontal_scale = (config.scale_x != 0 || config.scale_xy != 0) ? 2 : 1;
- unsigned vertical_scale = (config.scale_xy != 0) ? 2 : 1;
-
+ if (config.scaling > config.ScaleXY) {
+ LOG_CRITICAL(HW_GPU, "Unimplemented display transfer scaling mode %u", config.scaling.Value());
+ UNIMPLEMENTED();
+ break;
+ }
+
+ unsigned horizontal_scale = (config.scaling != config.NoScale) ? 2 : 1;
+ unsigned vertical_scale = (config.scaling == config.ScaleXY) ? 2 : 1;
+
u32 output_width = config.output_width / horizontal_scale;
u32 output_height = config.output_height / vertical_scale;
@@ -138,7 +144,7 @@ inline void Write(u32 addr, const T data) {
break;
}
- // TODO(Subv): Blend the pixels when horizontal / vertical scaling is enabled,
+ // TODO(Subv): Implement the box filter when scaling is enabled
// right now we're just skipping the extra pixels.
for (u32 y = 0; y < output_height; ++y) {
for (u32 x = 0; x < output_width; ++x) {