6d0551196d
Like with CPU emulation, we generally don't want to fire off the threads immediately after the relevant classes are initialized, we want to do this after all necessary data is done loading first. This splits the thread creation into its own interface member function to allow controlling when these threads in particular get created.
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
// Copyright 2019 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "video_core/gpu_synch.h"
|
|
#include "video_core/renderer_base.h"
|
|
|
|
namespace VideoCommon {
|
|
|
|
GPUSynch::GPUSynch(Core::System& system, VideoCore::RendererBase& renderer)
|
|
: GPU(system, renderer) {}
|
|
|
|
GPUSynch::~GPUSynch() = default;
|
|
|
|
void GPUSynch::Start() {}
|
|
|
|
void GPUSynch::PushGPUEntries(Tegra::CommandList&& entries) {
|
|
dma_pusher->Push(std::move(entries));
|
|
dma_pusher->DispatchCalls();
|
|
}
|
|
|
|
void GPUSynch::SwapBuffers(
|
|
std::optional<std::reference_wrapper<const Tegra::FramebufferConfig>> framebuffer) {
|
|
renderer.SwapBuffers(std::move(framebuffer));
|
|
}
|
|
|
|
void GPUSynch::FlushRegion(CacheAddr addr, u64 size) {
|
|
renderer.Rasterizer().FlushRegion(addr, size);
|
|
}
|
|
|
|
void GPUSynch::InvalidateRegion(CacheAddr addr, u64 size) {
|
|
renderer.Rasterizer().InvalidateRegion(addr, size);
|
|
}
|
|
|
|
void GPUSynch::FlushAndInvalidateRegion(CacheAddr addr, u64 size) {
|
|
renderer.Rasterizer().FlushAndInvalidateRegion(addr, size);
|
|
}
|
|
|
|
} // namespace VideoCommon
|