VertexLoader: Remove the LOADERDECL define.

These functions aren't called from jitted code anymore so it isn't necessary.
This commit is contained in:
Lioncash
2015-06-19 15:18:16 -04:00
parent c19903e0fe
commit 619e333dcc
7 changed files with 51 additions and 56 deletions

View File

@ -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!");