diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-12-22 03:02:02 -0600 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-12-22 03:02:02 -0600 |
| commit | 5af426df33c744870d7c232662bed49f1de694d0 (patch) | |
| tree | cea8ca1b7459079107832ec0ec771ab9ca144a85 /Source/Core/VideoCommon/BoundingBox.cpp | |
| parent | a00aa1a7703aa985274e89bde4065f4a376530f3 (diff) | |
| parent | 1efd00227d3c38458d44193c4aa554f70a3b9c55 (diff) | |
Merge pull request #1713 from degasus/vertex-loader
virtual vertex loader
Diffstat (limited to 'Source/Core/VideoCommon/BoundingBox.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BoundingBox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/BoundingBox.cpp b/Source/Core/VideoCommon/BoundingBox.cpp index 4b4400f2e7..9ea0fa5689 100644 --- a/Source/Core/VideoCommon/BoundingBox.cpp +++ b/Source/Core/VideoCommon/BoundingBox.cpp @@ -30,7 +30,7 @@ static TVtxDesc vertexDesc; static PortableVertexDeclaration vertexDecl; // Gets the pointer to the current buffer position -void LOADERDECL SetVertexBufferPosition() +void LOADERDECL SetVertexBufferPosition(VertexLoader* loader) { bufferPos = g_vertex_manager_write_ptr; } @@ -76,7 +76,7 @@ void Prepare(const VAT & vat, int primitive, const TVtxDesc & vtxDesc, const Por } // Updates the bounding box -void LOADERDECL Update() +void LOADERDECL Update(VertexLoader* loader) { if (!active) return; |
