2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#ifndef _FIFO_H
|
|
|
|
#define _FIFO_H
|
|
|
|
|
|
|
|
#include "pluginspecs_video.h"
|
|
|
|
#include "Common.h"
|
2009-12-16 17:05:30 +00:00
|
|
|
|
|
|
|
class PointerWrap;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#define FIFO_SIZE (1024*1024)
|
|
|
|
|
2009-08-08 01:39:56 +00:00
|
|
|
extern volatile bool g_bSkipCurrentFrame;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
void Fifo_Init();
|
|
|
|
void Fifo_Shutdown();
|
2009-02-20 22:04:52 +00:00
|
|
|
|
2009-07-17 22:57:02 +00:00
|
|
|
void Fifo_SendFifoData(u8* _uData, u32 len);
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
// These two are for dual core mode only.
|
2008-12-08 04:46:09 +00:00
|
|
|
void Fifo_EnterLoop(const SVideoInitialize &video_initialize);
|
2009-02-20 22:04:52 +00:00
|
|
|
void Fifo_ExitLoop();
|
2009-03-07 23:34:16 +00:00
|
|
|
void Fifo_ExitLoopNonBlocking();
|
2010-01-07 20:01:41 +00:00
|
|
|
void Fifo_RunLoop(bool run);
|
2009-02-20 22:04:52 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
void Fifo_DoState(PointerWrap &f);
|
|
|
|
|
2009-08-08 01:39:56 +00:00
|
|
|
void Fifo_SetRendering(bool bEnabled);
|
|
|
|
|
2009-07-11 02:34:16 +00:00
|
|
|
// Implemented by the Video Plugin
|
|
|
|
void VideoFifo_CheckSwapRequest();
|
|
|
|
void VideoFifo_CheckSwapRequestAt(u32 xfbAddr, u32 fbWidth, u32 fbHeight);
|
2009-07-11 16:52:34 +00:00
|
|
|
void VideoFifo_CheckEFBAccess();
|
2009-07-11 02:34:16 +00:00
|
|
|
|
2009-07-26 09:52:35 +00:00
|
|
|
#endif // _FIFO_H
|