blob: 52465250eca8ddbd8672063d8918493a5f70aa14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __GXDISPLIST_H__
#define __GXDISPLIST_H__
#ifdef __cplusplus
extern "C" {
#endif
/*---------------------------------------------------------------------------*/
void GXBeginDisplayList ( void *list, u32 size );
u32 GXEndDisplayList ( void );
void GXCallDisplayList ( const void *list, u32 nbytes );
/*---------------------------------------------------------------------------*/
#ifdef __cplusplus
}
#endif
#endif // __GXDISPLIST_H__
|