mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 03:29:11 +00:00
Fifo: Run/sync with the GPU on command processor register access
This commit is contained in:
parent
5322256065
commit
e3ac5dca32
3 changed files with 46 additions and 20 deletions
|
@ -33,6 +33,10 @@ enum class SyncGPUReason
|
|||
// In deterministic GPU thread mode this waits for the GPU to be done with pending work.
|
||||
void SyncGPU(SyncGPUReason reason, bool may_move_read_ptr = true);
|
||||
|
||||
// In single core mode, this runs the GPU for a single slice.
|
||||
// In dual core mode, this synchronizes with the GPU thread.
|
||||
void SyncGPUForRegisterAccess();
|
||||
|
||||
void PushFifoAuxBuffer(const void* ptr, size_t size);
|
||||
void* PopFifoAuxBuffer(size_t size);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue