2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2016-01-17 14:54:31 -07:00
|
|
|
#include <cstring>
|
|
|
|
|
2014-07-29 18:55:07 -06:00
|
|
|
#include "Common/ChunkFile.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/BPMemory.h"
|
2016-06-24 02:43:46 -06:00
|
|
|
#include "VideoCommon/BoundingBox.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/CPMemory.h"
|
2016-06-24 02:43:46 -06:00
|
|
|
#include "VideoCommon/CommandProcessor.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/Fifo.h"
|
2014-12-14 13:23:13 -07:00
|
|
|
#include "VideoCommon/GeometryShaderManager.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/PixelEngine.h"
|
|
|
|
#include "VideoCommon/PixelShaderManager.h"
|
|
|
|
#include "VideoCommon/TextureDecoder.h"
|
|
|
|
#include "VideoCommon/VertexManagerBase.h"
|
|
|
|
#include "VideoCommon/VertexShaderManager.h"
|
|
|
|
#include "VideoCommon/VideoState.h"
|
2014-02-18 18:27:20 -07:00
|
|
|
#include "VideoCommon/XFMemory.h"
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
void VideoCommon_DoState(PointerWrap& p)
|
2008-12-07 22:30:24 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
// BP Memory
|
|
|
|
p.Do(bpmem);
|
|
|
|
p.DoMarker("BP Memory");
|
2008-12-07 22:30:24 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// CP Memory
|
|
|
|
DoCPState(p);
|
2012-01-01 14:52:31 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// XF Memory
|
|
|
|
p.Do(xfmem);
|
|
|
|
p.DoMarker("XF Memory");
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// Texture decoder
|
|
|
|
p.DoArray(texMem);
|
|
|
|
p.DoMarker("texMem");
|
2009-10-10 15:19:39 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// FIFO
|
|
|
|
Fifo::DoState(p);
|
|
|
|
p.DoMarker("Fifo");
|
2012-01-01 14:52:31 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
CommandProcessor::DoState(p);
|
|
|
|
p.DoMarker("CommandProcessor");
|
2012-01-01 13:46:02 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
PixelEngine::DoState(p);
|
|
|
|
p.DoMarker("PixelEngine");
|
2012-01-01 14:52:31 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// the old way of replaying current bpmem as writes to push side effects to pixel shader manager
|
|
|
|
// doesn't really work.
|
|
|
|
PixelShaderManager::DoState(p);
|
|
|
|
p.DoMarker("PixelShaderManager");
|
2012-01-01 13:46:02 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
VertexShaderManager::DoState(p);
|
|
|
|
p.DoMarker("VertexShaderManager");
|
2014-12-14 13:23:13 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
GeometryShaderManager::DoState(p);
|
|
|
|
p.DoMarker("GeometryShaderManager");
|
2012-01-04 01:42:22 -07:00
|
|
|
|
2016-08-21 21:02:37 -06:00
|
|
|
g_vertex_manager->DoState(p);
|
2016-06-24 02:43:46 -06:00
|
|
|
p.DoMarker("VertexManager");
|
2014-09-14 10:52:51 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
BoundingBox::DoState(p);
|
|
|
|
p.DoMarker("BoundingBox");
|
2014-09-14 10:52:51 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// TODO: search for more data that should be saved and add it here
|
2008-12-07 22:30:24 -07:00
|
|
|
}
|