From 619e333dcceee874248337e02ef4d682984c92e5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 19 Jun 2015 15:18:16 -0400 Subject: VertexLoader: Remove the LOADERDECL define. These functions aren't called from jitted code anymore so it isn't necessary. --- Source/Core/VideoCommon/VertexLoader_Position.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/VertexLoader_Position.cpp') 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 -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 -void LOADERDECL Pos_ReadIndex(VertexLoader* loader) +void Pos_ReadIndex(VertexLoader* loader) { static_assert(std::is_unsigned::value, "Only unsigned I is sane!"); static_assert(N <= 3, "N > 3 is not sane!"); -- cgit v1.2.3