blob: 3b4d574439e26da0842664cba5ffd5b2b36bd7ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Common/CommonTypes.h"
extern bool s_BackendInitialized;
extern u32 s_efbAccessRequested;
extern volatile u32 s_FifoShuttingDown;
extern volatile u32 s_swapRequested;
void VideoFifo_CheckEFBAccess();
void VideoFifo_CheckSwapRequestAt(u32 xfbAddr, u32 fbWidth, u32 fbHeight);
|