early-access version 2372

This commit is contained in:
pineappleEA
2022-01-04 21:36:38 +01:00
parent 349ec14ec3
commit 6d636a7410
7 changed files with 40 additions and 15 deletions

View File

@@ -5,7 +5,6 @@
#pragma once
#include <memory>
#include <stop_token>
#include "common/bit_field.h"
#include "common/common_types.h"
@@ -210,7 +209,7 @@ public:
[[nodiscard]] const VideoCore::ShaderNotify& ShaderNotify() const;
/// Allows the CPU/NvFlinger to wait on the GPU before presenting a frame.
void WaitFence(u32 syncpoint_id, u32 value, std::stop_token stop_token = {});
void WaitFence(u32 syncpoint_id, u32 value);
void IncrementSyncPoint(u32 syncpoint_id);
@@ -233,6 +232,9 @@ public:
/// core timing events.
void Start();
/// Performs any additional necessary steps to shutdown GPU emulation.
void NotifyShutdown();
/// Obtain the CPU Context
void ObtainContext();