diff options
| author | Scott Mansell <phiren@gmail.com> | 2015-05-30 00:42:45 +1200 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2015-05-30 04:09:27 +1200 |
| commit | f57517f1a05db1790f853bf43d6093c19478b4ce (patch) | |
| tree | 4874138fabc5e0c892013d6151e6d19dd2b2c1ba /Source/Core/VideoCommon/VertexLoaderARM64.cpp | |
| parent | 6d916762fb52a85aa086ef0cb6516cc63fbe775b (diff) | |
Clean up cached_arraybases. Update VideoSW to new scheme.
Move ownership of cached_arraybases from CPMemory to VertexLoaderManager
to better match it usage.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderARM64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderARM64.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderARM64.cpp b/Source/Core/VideoCommon/VertexLoaderARM64.cpp index 038a576e74..36b6aae0f5 100644 --- a/Source/Core/VideoCommon/VertexLoaderARM64.cpp +++ b/Source/Core/VideoCommon/VertexLoaderARM64.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "VideoCommon/VertexLoaderARM64.h" +#include "VideoCommon/VertexLoaderManager.h" using namespace Arm64Gen; @@ -331,7 +332,7 @@ void VertexLoaderARM64::GenerateVertexLoader() MOV(saved_count, count_reg); MOVI2R(stride_reg, (u64)&g_main_cp_state.array_strides); - MOVI2R(arraybase_reg, (u64)&cached_arraybases); + MOVI2R(arraybase_reg, (u64)&VertexLoaderManager::cached_arraybases); MOVI2R(scale_reg, (u64)&scale_factors); const u8* loop_start = GetCodePtr(); |
