~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/VideoCommon/Src/MainBase.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _VIDEOCOMMON_MAINBASE_H_
 
3
#define _VIDEOCOMMON_MAINBASE_H_
 
4
 
 
5
#include "CommonTypes.h"
 
6
 
 
7
extern bool s_BackendInitialized;
 
8
extern u32 s_efbAccessRequested;
 
9
extern volatile u32 s_FifoShuttingDown;
 
10
extern volatile u32 s_swapRequested;
 
11
 
 
12
void VideoFifo_CheckEFBAccess();
 
13
void VideoFifo_CheckSwapRequestAt(u32 xfbAddr, u32 fbWidth, u32 fbHeight);
 
14
 
 
15
#endif