summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-10-07 02:27:37 -0400
committercomex <comexk@gmail.com>2014-10-07 02:27:37 -0400
commit39d01774deaf9754eaffdd21a3b548cc61f4f13b (patch)
treec4593c647951eadd2e659aece911ac81e672d64a /Source/Core
parent9d059d1d2fc74eb8f2a68fee33576c9bec56f83c (diff)
parent16a74a9557779cd15890b0a3bb2924cb4b00ad6f (diff)
Merge pull request #1229 from lioncash/ts
Fifo: Fix tab/space mismatches
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/Fifo.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/Source/Core/VideoCommon/Fifo.h b/Source/Core/VideoCommon/Fifo.h
index 40a5ad84b7..4418ac77af 100644
--- a/Source/Core/VideoCommon/Fifo.h
+++ b/Source/Core/VideoCommon/Fifo.h
@@ -30,14 +30,15 @@ void Fifo_PauseAndLock(bool doLock, bool unpauseOnUnlock);
void Fifo_UpdateWantDeterminism(bool want);
// Used for diagnostics.
-enum SyncGPUReason {
- SYNC_GPU_NONE,
- SYNC_GPU_OTHER,
- SYNC_GPU_WRAPAROUND,
- SYNC_GPU_EFB_POKE,
- SYNC_GPU_PERFQUERY,
- SYNC_GPU_SWAP,
- SYNC_GPU_AUX_SPACE,
+enum SyncGPUReason
+{
+ SYNC_GPU_NONE,
+ SYNC_GPU_OTHER,
+ SYNC_GPU_WRAPAROUND,
+ SYNC_GPU_EFB_POKE,
+ SYNC_GPU_PERFQUERY,
+ SYNC_GPU_SWAP,
+ SYNC_GPU_AUX_SPACE,
};
// 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);