blob: aa740c22493a971a062292705f5ff818313e03b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef _included_vramtime_h_
#define _included_vramtime_h_
#ifdef __cplusplus
extern "C" {
#endif
typedef enum VramWaitState
{
VWS_DDRELEASE,
VWS_D3DTEXRELEASE,
VWS_DDCREATE,
VWS_D3DTEXCREATE,
VWS_UNKNOWN,
VWS_MAXSTATES
} VRAM_WAIT_STATE;
void WaitForVRamReady(VRAM_WAIT_STATE);
#ifdef __cplusplus
}
#endif
#endif /* ! _included_vramtime_h_ */
|