summaryrefslogtreecommitdiffstats
path: root/src/video_core/vertex_loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/vertex_loader.h')
-rw-r--r--src/video_core/vertex_loader.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/video_core/vertex_loader.h b/src/video_core/vertex_loader.h
index 4ff62d97b..560d36edc 100644
--- a/src/video_core/vertex_loader.h
+++ b/src/video_core/vertex_loader.h
@@ -1,5 +1,8 @@
#pragma once
+#include <iterator>
+#include <algorithm>
+
#include "video_core/pica.h"
#include "video_core/shader/shader.h"
@@ -34,8 +37,8 @@ public:
class VertexLoader {
public:
- void Setup(const Pica::Regs &regs);
- void LoadVertex(int index, int vertex, Shader::InputVertex &input, MemoryAccesses &memory_accesses);
+ void Setup(const Pica::Regs& regs);
+ void LoadVertex(int index, int vertex, Shader::InputVertex& input, MemoryAccesses& memory_accesses);
u32 GetPhysicalBaseAddress() const { return base_address; }
int GetNumTotalAttributes() const { return num_total_attributes; }