diff options
| author | Henrik Rydgard <hrydgard@gmail.com> | 2016-04-28 19:40:11 +0200 |
|---|---|---|
| committer | Henrik Rydgard <hrydgard@gmail.com> | 2016-04-28 19:40:11 +0200 |
| commit | d00e2340c63c61ccb987c4ab0d76957f6cc84144 (patch) | |
| tree | b46216ab565f212c76fe58735b1467baecbf3327 /src/video_core/vertex_loader.h | |
| parent | 47ff00881703eeab03d32e60289ac34b7f4a7994 (diff) | |
Move "&" to their proper place, add missing includes and make some properly relative.
Diffstat (limited to 'src/video_core/vertex_loader.h')
| -rw-r--r-- | src/video_core/vertex_loader.h | 7 |
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 ®s); - 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; } |
