summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-06-19 15:18:16 -0400
committerLioncash <mathew1800@gmail.com>2015-06-20 20:52:54 -0400
commit619e333dcceee874248337e02ef4d682984c92e5 (patch)
treeb4f791edb1948cd304b7492b9d37ccd4c65550bc /Source/Core/VideoCommon/VertexLoader_TextCoord.cpp
parentc19903e0fea7c9d7b69c9fec1de452603c5ba272 (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_TextCoord.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoader_TextCoord.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp b/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp
index 7904a5ce88..28a9a33871 100644
--- a/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp
+++ b/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp
@@ -28,7 +28,7 @@ __forceinline void LOG_TEX<2>()
// PRIM_LOG("tex: %f %f, ", ((float*)g_vertex_manager_write_ptr)[-2], ((float*)g_vertex_manager_write_ptr)[-1]);
}
-static void LOADERDECL TexCoord_Read_Dummy(VertexLoader* loader)
+static void TexCoord_Read_Dummy(VertexLoader* loader)
{
loader->m_tcIndex++;
}
@@ -46,7 +46,7 @@ float TCScale(float val, float scale)
}
template <typename T, int N>
-void LOADERDECL TexCoord_ReadDirect(VertexLoader* loader)
+void TexCoord_ReadDirect(VertexLoader* loader)
{
auto const scale = loader->m_tcScale[loader->m_tcIndex];
DataReader dst(g_vertex_manager_write_ptr, nullptr);
@@ -63,7 +63,7 @@ void LOADERDECL TexCoord_ReadDirect(VertexLoader* loader)
}
template <typename I, typename T, int N>
-void LOADERDECL TexCoord_ReadIndex(VertexLoader* loader)
+void TexCoord_ReadIndex(VertexLoader* loader)
{
static_assert(std::is_unsigned<I>::value, "Only unsigned I is sane!");