summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoader_Normal.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_Normal.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_Normal.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoader_Normal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_Normal.cpp b/Source/Core/VideoCommon/VertexLoader_Normal.cpp
index 939b902a9d..615a09c3a9 100644
--- a/Source/Core/VideoCommon/VertexLoader_Normal.cpp
+++ b/Source/Core/VideoCommon/VertexLoader_Normal.cpp
@@ -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>();