diff options
| author | Sintendo <3380580+Sintendo@users.noreply.github.com> | 2026-02-01 09:20:46 +0100 |
|---|---|---|
| committer | Sintendo <3380580+Sintendo@users.noreply.github.com> | 2026-03-23 23:55:09 +0100 |
| commit | f6a67aa6e722350db3fc778e4f881cb60090faa1 (patch) | |
| tree | f35cbb126c72e04cc9032aa55453cfa0edcf7a97 /Source/Core/VideoCommon/VertexShaderManager.cpp | |
| parent | c05b231015375a88ecb4c4eea69862c8c75b809c (diff) | |
Use more std::span arguments
Diffstat (limited to 'Source/Core/VideoCommon/VertexShaderManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexShaderManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexShaderManager.cpp b/Source/Core/VideoCommon/VertexShaderManager.cpp index 973b944d98..6d69803827 100644 --- a/Source/Core/VideoCommon/VertexShaderManager.cpp +++ b/Source/Core/VideoCommon/VertexShaderManager.cpp @@ -161,7 +161,7 @@ bool VertexShaderManager::UseVertexDepthRange() // Syncs the shader constant buffers with xfmem // TODO: A cleaner way to control the matrices without making a mess in the parameters field -void VertexShaderManager::SetConstants(const std::vector<std::string>& textures, +void VertexShaderManager::SetConstants(std::span<const std::string> textures, XFStateManager& xf_state_manager) { if (constants.missing_color_hex != g_ActiveConfig.iMissingColorValue) |
