diff options
| author | skidau <skidau@gmail.com> | 2014-10-13 15:57:11 +1100 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2014-10-13 15:57:11 +1100 |
| commit | 9551650c42d8e256043a5783ba3b7b3aa18e350d (patch) | |
| tree | f30a28dd869b18a02b01e6b5a59d2ecb07fe9a04 /Source/Core/VideoCommon/VideoState.cpp | |
| parent | 01f1768c5560bae74f5a3f527a591b17bf60a9cf (diff) | |
| parent | 1e3b9ecdc143ec9a45fb6a4df3f26578e88ec371 (diff) | |
Merge pull request #1095 from crudelios/sw-bbox
Reimplement Bounding Box calculation using the software renderer.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index dd0eb2fb88..a36a5d9d33 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "Common/ChunkFile.h" +#include "VideoCommon/BoundingBox.h" #include "VideoCommon/BPMemory.h" #include "VideoCommon/CommandProcessor.h" #include "VideoCommon/CPMemory.h" @@ -52,6 +53,10 @@ static void DoState(PointerWrap &p) VertexManager::DoState(p); p.DoMarker("VertexManager"); + BoundingBox::DoState(p); + p.DoMarker("BoundingBox"); + + // TODO: search for more data that should be saved and add it here } |
