mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Reimplement Bounding Box calculation using the software renderer.
This commit is contained in:
parent
b7aed97508
commit
2d4b7e3f3f
13 changed files with 602 additions and 672 deletions
|
@ -14,6 +14,7 @@
|
|||
#include "VideoCommon/VertexShaderManager.h"
|
||||
#include "VideoCommon/VideoState.h"
|
||||
#include "VideoCommon/XFMemory.h"
|
||||
#include "VideoCommon/BoundingBox.h"
|
||||
|
||||
static void DoState(PointerWrap &p)
|
||||
{
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue