diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2023-11-25 16:23:54 -0600 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2023-11-26 16:27:26 -0600 |
| commit | 849a0c13b5fbfc31b38e2b2593b1213b8adfb9f4 (patch) | |
| tree | 115cb2a61d54aff3e376e59426453f0399e6560c /Source/Core/VideoCommon/VertexManagerBase.cpp | |
| parent | 1a2d0882d04446550687424e36a81a2c16a6a00d (diff) | |
VideoCommon: move xf state management to its own class, so changes can be detected in places other than VertexShaderManager
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexManagerBase.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index a7da900268..65772f3dad 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -42,6 +42,7 @@ #include "VideoCommon/VideoCommon.h" #include "VideoCommon/VideoConfig.h" #include "VideoCommon/XFMemory.h" +#include "VideoCommon/XFStateManager.h" std::unique_ptr<VertexManagerBase> g_vertex_manager; @@ -539,6 +540,7 @@ void VertexManagerBase::Flush() auto& pixel_shader_manager = system.GetPixelShaderManager(); auto& geometry_shader_manager = system.GetGeometryShaderManager(); auto& vertex_shader_manager = system.GetVertexShaderManager(); + auto& xf_state_manager = system.GetXFStateManager(); if (g_ActiveConfig.bGraphicMods) { @@ -578,7 +580,7 @@ void VertexManagerBase::Flush() } } } - vertex_shader_manager.SetConstants(texture_names); + vertex_shader_manager.SetConstants(texture_names, xf_state_manager); if (!bpmem.genMode.zfreeze) { // Must be done after VertexShaderManager::SetConstants() |
