blob: 358443917f4a78b03821e7ba2d706f2f8055db23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __GXCULL_H__
#define __GXCULL_H__
#ifdef __cplusplus
extern "C" {
#endif
/*---------------------------------------------------------------------------*/
void GXSetScissor ( u32 left, u32 top, u32 wd, u32 ht );
void GXSetCullMode ( GXCullMode mode );
void GXSetCoPlanar ( GXBool enable );
/*---------------------------------------------------------------------------*/
#ifdef __cplusplus
}
#endif
#endif // __GXCULL_H__
|