From 4129cdeb4d1e3969aba64cf2dad25b3864eedccb Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 10 Aug 2014 21:51:05 -0400 Subject: Software: Apply static to some functions --- Source/Core/VideoBackends/Software/Tev.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/VideoBackends/Software/Tev.cpp') diff --git a/Source/Core/VideoBackends/Software/Tev.cpp b/Source/Core/VideoBackends/Software/Tev.cpp index 8dd048f53b..35e6c302fe 100644 --- a/Source/Core/VideoBackends/Software/Tev.cpp +++ b/Source/Core/VideoBackends/Software/Tev.cpp @@ -123,12 +123,12 @@ void Tev::Init() m_ScaleRShiftLUT[3] = 1; } -inline s16 Clamp255(s16 in) +static inline s16 Clamp255(s16 in) { return in>255?255:(in<0?0:in); } -inline s16 Clamp1024(s16 in) +static inline s16 Clamp1024(s16 in) { return in>1023?1023:(in<-1024?-1024:in); } @@ -366,7 +366,7 @@ static bool TevAlphaTest(int alpha) return true; } -inline s32 WrapIndirectCoord(s32 coord, int wrapMode) +static inline s32 WrapIndirectCoord(s32 coord, int wrapMode) { switch (wrapMode) { -- cgit v1.2.3