diff options
| author | degasus <wickmarkus@web.de> | 2016-01-12 22:44:58 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2016-01-12 23:28:26 +0100 |
| commit | 5f244abf2833db9d3a7d93a0632b56c4bf55e5e7 (patch) | |
| tree | e570af842d310da10ebc9ffde3bb50cc8532c0fc /Source/Core/VideoCommon/XFStructs.cpp | |
| parent | c3481a576bb445645332de20534687b6a927843d (diff) | |
Fifo: Create a "Fifo" namespace.
Diffstat (limited to 'Source/Core/VideoCommon/XFStructs.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/XFStructs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/XFStructs.cpp b/Source/Core/VideoCommon/XFStructs.cpp index ecf1eda08e..4fb7333964 100644 --- a/Source/Core/VideoCommon/XFStructs.cpp +++ b/Source/Core/VideoCommon/XFStructs.cpp @@ -258,9 +258,9 @@ void LoadIndexedXF(u32 val, int refarray) u32* currData = (u32*)(&xfmem) + address; u32* newData; - if (g_use_deterministic_gpu_thread) + if (Fifo::g_use_deterministic_gpu_thread) { - newData = (u32*)PopFifoAuxBuffer(size * sizeof(u32)); + newData = (u32*)Fifo::PopFifoAuxBuffer(size * sizeof(u32)); } else { @@ -291,5 +291,5 @@ void PreprocessIndexedXF(u32 val, int refarray) u32* new_data = (u32*)Memory::GetPointer(g_preprocess_cp_state.array_bases[refarray] + g_preprocess_cp_state.array_strides[refarray] * index); size_t buf_size = size * sizeof(u32); - PushFifoAuxBuffer(new_data, buf_size); + Fifo::PushFifoAuxBuffer(new_data, buf_size); } |
