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"
|
|
|
|
#include "video_core/gpu_thread.h"
|
|
|
|
|
2020-03-25 02:58:49 +00:00
|
|
|
namespace Core::Frontend {
|
|
|
|
class GraphicsContext;
|
|
|
|
}
|
|
|
|
|
2019-02-09 04:21:53 +00:00
|
|
|
namespace VideoCore {
|
|
|
|
class RendererBase;
|
|
|
|
} // namespace VideoCore
|
|
|
|
|
|
|
|
namespace VideoCommon {
|
|
|
|
|
|
|
|
/// Implementation of GPU interface that runs the GPU asynchronously
|
2019-08-21 04:55:25 +00:00
|
|
|
class GPUAsynch final : public Tegra::GPU {
|
2019-02-09 04:21:53 +00:00
|
|
|
public:
|
2020-10-27 03:07:36 +00:00
|
|
|
explicit GPUAsynch(Core::System& system, bool use_nvdec);
|
2019-03-07 20:57:08 +00:00
|
|
|
~GPUAsynch() override;
|
2019-02-09 04:21:53 +00:00
|
|
|
|
2019-04-09 18:02:00 +00:00
|
|
|
void Start() override;
|
2020-04-03 15:58:43 +00:00
|
|
|
void ObtainContext() override;
|
|
|
|
void ReleaseContext() override;
|
2019-02-09 04:21:53 +00:00
|
|
|
void PushGPUEntries(Tegra::CommandList&& entries) override;
|
2020-10-27 03:07:36 +00:00
|
|
|
void PushCommandBuffer(Tegra::ChCommandHeaderList& entries) override;
|
2019-08-21 04:55:25 +00:00
|
|
|
void SwapBuffers(const Tegra::FramebufferConfig* framebuffer) override;
|
2020-04-05 16:58:23 +00:00
|
|
|
void FlushRegion(VAddr addr, u64 size) override;
|
|
|
|
void InvalidateRegion(VAddr addr, u64 size) override;
|
|
|
|
void FlushAndInvalidateRegion(VAddr addr, u64 size) override;
|
2019-09-26 23:08:22 +00:00
|
|
|
void WaitIdle() const override;
|
2019-02-09 04:21:53 +00:00
|
|
|
|
2020-02-17 22:10:23 +00:00
|
|
|
void OnCommandListEnd() override;
|
|
|
|
|
2019-06-08 00:41:06 +00:00
|
|
|
protected:
|
2019-06-19 00:53:21 +00:00
|
|
|
void TriggerCpuInterrupt(u32 syncpoint_id, u32 value) const override;
|
2019-06-08 00:41:06 +00:00
|
|
|
|
2019-02-09 04:21:53 +00:00
|
|
|
private:
|
|
|
|
GPUThread::ThreadManager gpu_thread;
|
2020-03-25 02:58:49 +00:00
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> cpu_context;
|
2019-02-09 04:21:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace VideoCommon
|