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
|
2019-08-21 04:55:25 +00:00
|
|
|
class GPUSynch final : public Tegra::GPU {
|
2019-02-09 04:21:53 +00:00
|
|
|
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;
|
2019-08-21 04:55:25 +00:00
|
|
|
void SwapBuffers(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-09-26 23:08:22 +00:00
|
|
|
void WaitIdle() const override {}
|
2019-06-08 00:41:06 +00:00
|
|
|
|
|
|
|
protected:
|
2019-06-19 00:53:21 +00:00
|
|
|
void TriggerCpuInterrupt([[maybe_unused]] u32 syncpoint_id,
|
|
|
|
[[maybe_unused]] u32 value) const override {}
|
2019-02-09 04:21:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace VideoCommon
|