diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-06-19 15:18:16 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-06-20 20:52:54 -0400 |
| commit | 619e333dcceee874248337e02ef4d682984c92e5 (patch) | |
| tree | b4f791edb1948cd304b7492b9d37ccd4c65550bc /Source/Core/VideoCommon/VertexLoader_Position.cpp | |
| parent | c19903e0fea7c9d7b69c9fec1de452603c5ba272 (diff) | |
VertexLoader: Remove the LOADERDECL define.
These functions aren't called from jitted code anymore so it isn't necessary.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader_Position.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Position.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_Position.cpp b/Source/Core/VideoCommon/VertexLoader_Position.cpp index fd17fbf4d7..906cf61d71 100644 --- a/Source/Core/VideoCommon/VertexLoader_Position.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Position.cpp @@ -24,7 +24,7 @@ float PosScale(float val, float scale) } template <typename T, int N> -void LOADERDECL Pos_ReadDirect(VertexLoader* loader) +void Pos_ReadDirect(VertexLoader* loader) { static_assert(N <= 3, "N > 3 is not sane!"); auto const scale = loader->m_posScale; @@ -45,7 +45,7 @@ void LOADERDECL Pos_ReadDirect(VertexLoader* loader) } template <typename I, typename T, int N> -void LOADERDECL Pos_ReadIndex(VertexLoader* loader) +void Pos_ReadIndex(VertexLoader* loader) { static_assert(std::is_unsigned<I>::value, "Only unsigned I is sane!"); static_assert(N <= 3, "N > 3 is not sane!"); |
