mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
86 lines
1.9 KiB
C++
86 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include "GPUInterface.h"
|
|
|
|
class GPUCommon : public GPUInterface
|
|
{
|
|
public:
|
|
GPUCommon();
|
|
virtual ~GPUCommon() {}
|
|
|
|
virtual void InterruptStart(int listid);
|
|
virtual void InterruptEnd(int listid);
|
|
virtual void SyncEnd(WaitType waitType, int listid, bool wokeThreads);
|
|
virtual void EnableInterrupts(bool enable) {
|
|
interruptsEnabled_ = enable;
|
|
}
|
|
|
|
virtual void ExecuteOp(u32 op, u32 diff);
|
|
virtual void PreExecuteOp(u32 op, u32 diff);
|
|
virtual bool InterpretList(DisplayList &list);
|
|
virtual bool ProcessDLQueue();
|
|
virtual u32 UpdateStall(int listid, u32 newstall);
|
|
virtual u32 EnqueueList(u32 listpc, u32 stall, int subIntrBase, bool head);
|
|
virtual u32 DequeueList(int listid);
|
|
virtual int ListSync(int listid, int mode);
|
|
virtual u32 DrawSync(int mode);
|
|
virtual void DoState(PointerWrap &p);
|
|
virtual bool FramebufferDirty() { return true; }
|
|
virtual u32 Continue();
|
|
virtual u32 Break(int mode);
|
|
|
|
protected:
|
|
// To avoid virtual calls to PreExecuteOp().
|
|
virtual void FastRunLoop(DisplayList &list) = 0;
|
|
void SlowRunLoop(DisplayList &list);
|
|
void UpdatePC(u32 currentPC, u32 newPC = 0);
|
|
void UpdateState(GPUState state);
|
|
void PopDLQueue();
|
|
void CheckDrawSync();
|
|
|
|
typedef std::list<int> DisplayListQueue;
|
|
|
|
DisplayList dls[DisplayListMaxCount];
|
|
DisplayList *currentList;
|
|
DisplayListQueue dlQueue;
|
|
|
|
bool interruptRunning;
|
|
GPUState gpuState;
|
|
bool isbreak;
|
|
u64 drawCompleteTicks;
|
|
u64 busyTicks;
|
|
|
|
int downcount;
|
|
u64 startingTicks;
|
|
u32 cycleLastPC;
|
|
int cyclesExecuted;
|
|
|
|
bool dumpNextFrame_;
|
|
bool dumpThisFrame_;
|
|
bool interruptsEnabled_;
|
|
|
|
public:
|
|
virtual DisplayList* getList(int listid)
|
|
{
|
|
return &dls[listid];
|
|
}
|
|
|
|
const std::list<int>& GetDisplayLists()
|
|
{
|
|
return dlQueue;
|
|
}
|
|
DisplayList* GetCurrentDisplayList()
|
|
{
|
|
return currentList;
|
|
}
|
|
virtual bool DecodeTexture(u8* dest, GPUgstate state)
|
|
{
|
|
return false;
|
|
}
|
|
std::vector<FramebufferInfo> GetFramebufferList()
|
|
{
|
|
return std::vector<FramebufferInfo>();
|
|
}
|
|
|
|
};
|