2019-02-09 07:21:53 +03: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"
|
|
|
|
|
2020-03-25 05:58:49 +03:00
|
|
|
namespace Core::Frontend {
|
|
|
|
class GraphicsContext;
|
|
|
|
}
|
|
|
|
|
2019-02-09 07:21:53 +03:00
|
|
|
namespace VideoCore {
|
|
|
|
class RendererBase;
|
|
|
|
} // namespace VideoCore
|
|
|
|
|
|
|
|
namespace VideoCommon {
|
|
|
|
|
|
|
|
/// Implementation of GPU interface that runs the GPU synchronously
|
2019-08-21 07:55:25 +03:00
|
|
|
class GPUSynch final : public Tegra::GPU {
|
2019-02-09 07:21:53 +03:00
|
|
|
public:
|
2020-06-11 06:58:57 +03:00
|
|
|
explicit GPUSynch(Core::System& system);
|
2019-03-07 23:57:08 +03:00
|
|
|
~GPUSynch() override;
|
2019-02-09 07:21:53 +03:00
|
|
|
|
2019-04-09 21:02:00 +03:00
|
|
|
void Start() override;
|
2020-04-03 18:58:43 +03:00
|
|
|
void ObtainContext() override;
|
|
|
|
void ReleaseContext() override;
|
2019-02-09 07:21:53 +03:00
|
|
|
void PushGPUEntries(Tegra::CommandList&& entries) override;
|
2019-08-21 07:55:25 +03:00
|
|
|
void SwapBuffers(const Tegra::FramebufferConfig* framebuffer) override;
|
2020-04-05 19:58:23 +03:00
|
|
|
void FlushRegion(VAddr addr, u64 size) override;
|
|
|
|
void InvalidateRegion(VAddr addr, u64 size) override;
|
|
|
|
void FlushAndInvalidateRegion(VAddr addr, u64 size) override;
|
2019-09-27 02:08:22 +03:00
|
|
|
void WaitIdle() const override {}
|
2019-06-08 03:41:06 +03:00
|
|
|
|
|
|
|
protected:
|
2019-06-19 03:53:21 +03:00
|
|
|
void TriggerCpuInterrupt([[maybe_unused]] u32 syncpoint_id,
|
|
|
|
[[maybe_unused]] u32 value) const override {}
|
2019-02-09 07:21:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace VideoCommon
|