2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2016-01-17 21:54:31 +00:00
|
|
|
#include <cstring>
|
|
|
|
|
2014-07-30 00:55:07 +00:00
|
|
|
#include "Common/ChunkFile.h"
|
2014-09-17 01:04:37 +00:00
|
|
|
#include "VideoCommon/BoundingBox.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/BPMemory.h"
|
2014-02-19 01:27:20 +00:00
|
|
|
#include "VideoCommon/CommandProcessor.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/CPMemory.h"
|
|
|
|
#include "VideoCommon/Fifo.h"
|
2014-12-14 20:23:13 +00:00
|
|
|
#include "VideoCommon/GeometryShaderManager.h"
|
2014-02-17 10:18:15 +00: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-19 01:27:20 +00:00
|
|
|
#include "VideoCommon/XFMemory.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2016-01-12 21:46:44 +00:00
|
|
|
void VideoCommon_DoState(PointerWrap &p)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-03-20 01:51:12 +00:00
|
|
|
// BP Memory
|
|
|
|
p.Do(bpmem);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("BP Memory");
|
|
|
|
|
|
|
|
// CP Memory
|
2014-08-27 17:26:06 +00:00
|
|
|
DoCPState(p);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-03-20 01:51:12 +00:00
|
|
|
// XF Memory
|
2014-04-27 18:59:04 +00:00
|
|
|
p.Do(xfmem);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("XF Memory");
|
|
|
|
|
|
|
|
// Texture decoder
|
2015-09-29 16:35:30 +00:00
|
|
|
p.DoArray(texMem);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("texMem");
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-20 01:51:12 +00:00
|
|
|
// FIFO
|
2016-01-12 21:44:58 +00:00
|
|
|
Fifo::DoState(p);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("Fifo");
|
2009-10-10 21:19:39 +00:00
|
|
|
|
2013-03-20 01:51:12 +00:00
|
|
|
CommandProcessor::DoState(p);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("CommandProcessor");
|
|
|
|
|
|
|
|
PixelEngine::DoState(p);
|
|
|
|
p.DoMarker("PixelEngine");
|
2012-01-01 20:46:02 +00: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);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("PixelShaderManager");
|
|
|
|
|
2012-01-01 20:46:02 +00:00
|
|
|
VertexShaderManager::DoState(p);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("VertexShaderManager");
|
2012-01-01 20:46:02 +00:00
|
|
|
|
2014-12-14 20:23:13 +00:00
|
|
|
GeometryShaderManager::DoState(p);
|
|
|
|
p.DoMarker("GeometryShaderManager");
|
|
|
|
|
2015-11-01 21:54:41 +00:00
|
|
|
VertexManagerBase::DoState(p);
|
2012-01-04 08:42:22 +00:00
|
|
|
p.DoMarker("VertexManager");
|
|
|
|
|
2014-09-14 16:52:51 +00:00
|
|
|
BoundingBox::DoState(p);
|
|
|
|
p.DoMarker("BoundingBox");
|
|
|
|
|
|
|
|
|
2012-01-01 20:46:02 +00:00
|
|
|
// TODO: search for more data that should be saved and add it here
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2012-01-02 10:20:22 +00:00
|
|
|
void VideoCommon_Init()
|
|
|
|
{
|
2014-08-27 17:26:06 +00:00
|
|
|
memset(&g_main_cp_state, 0, sizeof(g_main_cp_state));
|
2014-08-27 17:38:00 +00:00
|
|
|
memset(&g_preprocess_cp_state, 0, sizeof(g_preprocess_cp_state));
|
2012-01-02 10:20:22 +00:00
|
|
|
memset(texMem, 0, TMEM_SIZE);
|
|
|
|
}
|