2019-02-09 04:21:53 +00:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "video_core/gpu.h"
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
class RendererBase;
|
|
|
|
} // namespace VideoCore
|
|
|
|
|
|
|
|
namespace VideoCommon {
|
|
|
|
|
|
|
|
/// Implementation of GPU interface that runs the GPU synchronously
|
|
|
|
class GPUSynch : public Tegra::GPU {
|
|
|
|
public:
|
|
|
|
explicit GPUSynch(Core::System& system, VideoCore::RendererBase& renderer);
|
2019-03-07 20:57:08 +00:00
|
|
|
~GPUSynch() override;
|
2019-02-09 04:21:53 +00:00
|
|
|
|
2019-04-09 18:02:00 +00:00
|
|
|
void Start() override;
|
2019-02-09 04:21:53 +00:00
|
|
|
void PushGPUEntries(Tegra::CommandList&& entries) override;
|
|
|
|
void SwapBuffers(
|
|
|
|
std::optional<std::reference_wrapper<const Tegra::FramebufferConfig>> framebuffer) override;
|
2019-02-19 01:58:32 +00:00
|
|
|
void FlushRegion(CacheAddr addr, u64 size) override;
|
|
|
|
void InvalidateRegion(CacheAddr addr, u64 size) override;
|
|
|
|
void FlushAndInvalidateRegion(CacheAddr addr, u64 size) override;
|
2019-06-08 00:41:06 +00:00
|
|
|
|
|
|
|
protected:
|
2019-06-12 11:52:49 +00:00
|
|
|
void TriggerCpuInterrupt(const u32 syncpoint_id, const u32 value) const override {}
|
2019-02-09 04:21:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace VideoCommon
|