mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Moving pixel engine and command processor from core to video common. This will break previous save states. Adds decoding single pixels to texture decoder.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4391 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -22,6 +22,8 @@
|
||||
#include "XFMemory.h"
|
||||
#include "TextureDecoder.h"
|
||||
#include "Fifo.h"
|
||||
#include "CommandProcessor.h"
|
||||
#include "PixelEngine.h"
|
||||
|
||||
static void DoState(PointerWrap &p)
|
||||
{
|
||||
@ -43,6 +45,9 @@ static void DoState(PointerWrap &p)
|
||||
|
||||
// FIFO
|
||||
Fifo_DoState(p);
|
||||
|
||||
CommandProcessor::DoState(p);
|
||||
PixelEngine::DoState(p);
|
||||
}
|
||||
|
||||
void VideoCommon_DoState(PointerWrap &p)
|
||||
|
Reference in New Issue
Block a user