Merge pull request #1229 from lioncash/ts
Fifo: Fix tab/space mismatches
This commit is contained in:
commit
39d01774de
|
@ -30,14 +30,15 @@ void Fifo_PauseAndLock(bool doLock, bool unpauseOnUnlock);
|
||||||
void Fifo_UpdateWantDeterminism(bool want);
|
void Fifo_UpdateWantDeterminism(bool want);
|
||||||
|
|
||||||
// Used for diagnostics.
|
// Used for diagnostics.
|
||||||
enum SyncGPUReason {
|
enum SyncGPUReason
|
||||||
SYNC_GPU_NONE,
|
{
|
||||||
SYNC_GPU_OTHER,
|
SYNC_GPU_NONE,
|
||||||
SYNC_GPU_WRAPAROUND,
|
SYNC_GPU_OTHER,
|
||||||
SYNC_GPU_EFB_POKE,
|
SYNC_GPU_WRAPAROUND,
|
||||||
SYNC_GPU_PERFQUERY,
|
SYNC_GPU_EFB_POKE,
|
||||||
SYNC_GPU_SWAP,
|
SYNC_GPU_PERFQUERY,
|
||||||
SYNC_GPU_AUX_SPACE,
|
SYNC_GPU_SWAP,
|
||||||
|
SYNC_GPU_AUX_SPACE,
|
||||||
};
|
};
|
||||||
// In g_use_deterministic_gpu_thread mode, waits for the GPU to be done with pending work.
|
// In g_use_deterministic_gpu_thread mode, waits for the GPU to be done with pending work.
|
||||||
void SyncGPU(SyncGPUReason reason, bool may_move_read_ptr = true);
|
void SyncGPU(SyncGPUReason reason, bool may_move_read_ptr = true);
|
||||||
|
|
Loading…
Reference in New Issue