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

@ -56,7 +56,7 @@ __forceinline void ReadIndirect(const T* data)
template <typename T, int N>
struct Normal_Direct
{
static void LOADERDECL function(VertexLoader* loader)
static void function(VertexLoader* loader)
{
auto const source = reinterpret_cast<const T*>(DataGetPosition());
ReadIndirect<T, N * 3>(source);
@ -80,7 +80,7 @@ __forceinline void Normal_Index_Offset()
template <typename I, typename T, int N>
struct Normal_Index
{
static void LOADERDECL function(VertexLoader* loader)
static void function(VertexLoader* loader)
{
Normal_Index_Offset<I, T, N, 0>();
}
@ -91,7 +91,7 @@ struct Normal_Index
template <typename I, typename T>
struct Normal_Index_Indices3
{
static void LOADERDECL function(VertexLoader* loader)
static void function(VertexLoader* loader)
{
Normal_Index_Offset<I, T, 1, 0>();
Normal_Index_Offset<I, T, 1, 1>();