summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoader_Normal.cpp
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2015-06-21 03:17:38 +0200
committerflacs <tilkax@gmail.com>2015-06-21 03:17:38 +0200
commita702c4e01eadbd5fd112a7355d6fcee40af0a136 (patch)
tree85156ef09dfb7bdf119453063d878a189b81cae9 /Source/Core/VideoCommon/VertexLoader_Normal.cpp
parent1003d08d8169e18ac8dad5055690dab8bd0e68ce (diff)
parent619e333dcceee874248337e02ef4d682984c92e5 (diff)
Merge pull request #2629 from lioncash/vertexloader-ifdef
VertexLoader: Remove the LOADERDECL define.
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>();