diff options
Diffstat (limited to 'Source/Core/VideoCommon/VertexShaderManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexShaderManager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/VertexShaderManager.cpp b/Source/Core/VideoCommon/VertexShaderManager.cpp index 8c8f08b154..20b41e194c 100644 --- a/Source/Core/VideoCommon/VertexShaderManager.cpp +++ b/Source/Core/VideoCommon/VertexShaderManager.cpp @@ -657,7 +657,7 @@ void VertexShaderManager::SetTexMatrixChangedA(u32 Value) { if (g_main_cp_state.matrix_index_a.Hex != Value) { - VertexManager::Flush(); + VertexManagerBase::Flush(); if (g_main_cp_state.matrix_index_a.PosNormalMtxIdx != (Value & 0x3f)) bPosNormalMatrixChanged = true; bTexMatricesChanged[0] = true; @@ -669,7 +669,7 @@ void VertexShaderManager::SetTexMatrixChangedB(u32 Value) { if (g_main_cp_state.matrix_index_b.Hex != Value) { - VertexManager::Flush(); + VertexManagerBase::Flush(); bTexMatricesChanged[1] = true; g_main_cp_state.matrix_index_b.Hex = Value; } @@ -738,7 +738,7 @@ void VertexShaderManager::TransformToClipSpace(const float* data, float* out, u3 // We use the projection matrix calculated by VertexShaderManager, because it // includes any free look transformations. - // Make sure VertexManager::SetConstants() has been called first. + // Make sure VertexShaderManager::SetConstants() has been called first. const float* proj_matrix = &g_fProjectionMatrix[0]; const float t[3] = { |
