diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2025-03-02 11:27:54 -0600 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2025-03-02 11:27:54 -0600 |
| commit | 6dedf11c964d3f08bab46f52bfc791d282186db3 (patch) | |
| tree | 6097adc928ee13656eba5bffeafc4775d0fe0939 /Source/Core/VideoCommon/VertexShaderGen.cpp | |
| parent | fd2766f5dfd9096cc826d51532ae522d5e3680b0 (diff) | |
VideoCommon: mark 'WriteTexCoordTransforms' as 'static'
Diffstat (limited to 'Source/Core/VideoCommon/VertexShaderGen.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexShaderGen.cpp | 4 |
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) { |
