summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoader_Position.cpp
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2015-06-21 03:17:38 +0200
committerflacs <tilkax@gmail.com>2015-06-21 03:17:38 +0200
commita702c4e01eadbd5fd112a7355d6fcee40af0a136 (patch)
tree85156ef09dfb7bdf119453063d878a189b81cae9 /Source/Core/VideoCommon/VertexLoader_Position.cpp
parent1003d08d8169e18ac8dad5055690dab8bd0e68ce (diff)
parent619e333dcceee874248337e02ef4d682984c92e5 (diff)
Merge pull request #2629 from lioncash/vertexloader-ifdef
VertexLoader: Remove the LOADERDECL define.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader_Position.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoader_Position.cpp4
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!");