diff options
| author | 2017-02-04 13:02:48 -0800 | |
|---|---|---|
| committer | 2017-02-04 13:02:48 -0800 | |
| commit | 97e06b0a0daccd3347ae1bcaf294093b5af32e85 (patch) | |
| tree | 59e1997c90558f58f7368d6974c355e1f20d8f32 /src/video_core/vertex_loader.h | |
| parent | Merge pull request #2414 from yuriks/texture-decode (diff) | |
| parent | VideoCore: Make PrimitiveAssembler const-correct (diff) | |
| download | yuzu-97e06b0a0daccd3347ae1bcaf294093b5af32e85.tar.gz yuzu-97e06b0a0daccd3347ae1bcaf294093b5af32e85.tar.xz yuzu-97e06b0a0daccd3347ae1bcaf294093b5af32e85.zip | |
Merge pull request #2476 from yuriks/shader-refactor3
Oh No! More shader changes!
Diffstat (limited to 'src/video_core/vertex_loader.h')
| -rw-r--r-- | src/video_core/vertex_loader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/vertex_loader.h b/src/video_core/vertex_loader.h index 9f2098bb2..51f3d45b4 100644 --- a/src/video_core/vertex_loader.h +++ b/src/video_core/vertex_loader.h | |||
| @@ -11,7 +11,7 @@ class MemoryAccessTracker; | |||
| 11 | } | 11 | } |
| 12 | 12 | ||
| 13 | namespace Shader { | 13 | namespace Shader { |
| 14 | struct InputVertex; | 14 | struct AttributeBuffer; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | class VertexLoader { | 17 | class VertexLoader { |
| @@ -22,7 +22,7 @@ public: | |||
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | void Setup(const Pica::Regs& regs); | 24 | void Setup(const Pica::Regs& regs); |
| 25 | void LoadVertex(u32 base_address, int index, int vertex, Shader::InputVertex& input, | 25 | void LoadVertex(u32 base_address, int index, int vertex, Shader::AttributeBuffer& input, |
| 26 | DebugUtils::MemoryAccessTracker& memory_accesses); | 26 | DebugUtils::MemoryAccessTracker& memory_accesses); |
| 27 | 27 | ||
| 28 | int GetNumTotalAttributes() const { | 28 | int GetNumTotalAttributes() const { |