summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexShaderGen.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2025-03-03 02:45:52 +0000
committerGitHub <noreply@github.com>2025-03-03 02:45:52 +0000
commitecb0a3e5c7cbf4fd9808905281f990e42d629ccf (patch)
tree6097adc928ee13656eba5bffeafc4775d0fe0939 /Source/Core/VideoCommon/VertexShaderGen.cpp
parentfd2766f5dfd9096cc826d51532ae522d5e3680b0 (diff)
parent6dedf11c964d3f08bab46f52bfc791d282186db3 (diff)
Merge pull request #13389 from iwubcode/static_texcoords_vertex_shadergen
VideoCommon: mark 'WriteTexCoordTransforms' as 'static'
Diffstat (limited to 'Source/Core/VideoCommon/VertexShaderGen.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexShaderGen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexShaderGen.cpp b/Source/Core/VideoCommon/VertexShaderGen.cpp
index 5512b0f1c4..41512cd489 100644
--- a/Source/Core/VideoCommon/VertexShaderGen.cpp
+++ b/Source/Core/VideoCommon/VertexShaderGen.cpp
@@ -74,8 +74,8 @@ VertexShaderUid GetVertexShaderUid()
return out;
}
-void WriteTexCoordTransforms(APIType api_type, const ShaderHostConfig& host_config,
- const vertex_shader_uid_data* uid_data, ShaderCode& out)
+static void WriteTexCoordTransforms(APIType api_type, const ShaderHostConfig& host_config,
+ const vertex_shader_uid_data* uid_data, ShaderCode& out)
{
for (u32 i = 0; i < uid_data->numTexGens; ++i)
{