From 82b55b763c213ecd2e3af338b4fe631729fe6e93 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 18 Apr 2020 22:09:34 -0400 Subject: [PATCH] swrasterizer/proctex: Make CombineAndMap() internally linked This isn't used outside of this source file, so it can be marked internally linked. --- src/video_core/swrasterizer/proctex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/swrasterizer/proctex.cpp b/src/video_core/swrasterizer/proctex.cpp index 80852da2e..3993726d3 100644 --- a/src/video_core/swrasterizer/proctex.cpp +++ b/src/video_core/swrasterizer/proctex.cpp @@ -112,8 +112,8 @@ static void ClampCoord(float& coord, ProcTexClamp mode) { } } -float CombineAndMap(float u, float v, ProcTexCombiner combiner, - const std::array& map_table) { +static float CombineAndMap(float u, float v, ProcTexCombiner combiner, + const std::array& map_table) { float f; switch (combiner) { case ProcTexCombiner::U: