summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-01-31 23:41:29 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-02-01 01:47:28 +0100
commit8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de (patch)
tree5bbbdf9b9e67a8374c9b19cb2166d817abe60a9b /src/video_core/engines
parentGPU: Improve syncing. (diff)
downloadyuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.tar
yuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.tar.gz
yuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.tar.bz2
yuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.tar.lz
yuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.tar.xz
yuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.tar.zst
yuzu-8a6e6465a7bb4efe5d2925fcaf7e0df19f91e6de.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/engine_upload.cpp2
-rw-r--r--src/video_core/engines/maxwell_3d.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/engine_upload.cpp b/src/video_core/engines/engine_upload.cpp
index 4eb9a094d..351b110fe 100644
--- a/src/video_core/engines/engine_upload.cpp
+++ b/src/video_core/engines/engine_upload.cpp
@@ -37,7 +37,7 @@ void State::ProcessData(const u32 data, const bool is_last_call) {
}
const GPUVAddr address{regs.dest.Address()};
if (is_linear) {
- rasterizer->AccelerateInline2Memory(address, copy_size, inner_buffer);
+ rasterizer->AccelerateInlineToMemory(address, copy_size, inner_buffer);
} else {
UNIMPLEMENTED_IF(regs.dest.z != 0);
UNIMPLEMENTED_IF(regs.dest.depth != 1);
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index e0a435c45..dc9df6c8b 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1557,7 +1557,7 @@ private:
static constexpr u32 null_cb_data = 0xFFFFFFFF;
struct CBDataState {
- static constexpr size_t inline_size = 0x8000;
+ static constexpr size_t inline_size = 0x4000;
std::array<std::array<u32, inline_size>, 16> buffer;
u32 current{null_cb_data};
u32 id{null_cb_data};