summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoader_Position.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader_Position.h')
-rw-r--r--Source/Core/VideoCommon/VertexLoader_Position.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_Position.h b/Source/Core/VideoCommon/VertexLoader_Position.h
index a38d277278..74208c2f8d 100644
--- a/Source/Core/VideoCommon/VertexLoader_Position.h
+++ b/Source/Core/VideoCommon/VertexLoader_Position.h
@@ -7,10 +7,16 @@
#include "Common/CommonTypes.h"
#include "VideoCommon/VertexLoader.h"
+enum class VertexComponentFormat;
+enum class ComponentFormat;
+enum class CoordComponentCount;
+
class VertexLoader_Position
{
public:
- static u32 GetSize(u64 type, u32 format, u32 elements);
+ static u32 GetSize(VertexComponentFormat type, ComponentFormat format,
+ CoordComponentCount elements);
- static TPipelineFunction GetFunction(u64 type, u32 format, u32 elements);
+ static TPipelineFunction GetFunction(VertexComponentFormat type, ComponentFormat format,
+ CoordComponentCount elements);
};