ps2sdk  1.1
A collection of Open Source libraries used for developing applications on Sony's PlayStation 2® (PS2).
draw_masking.h
Go to the documentation of this file.
1 
6 #ifndef __DRAW_MASKING_H__
7 #define __DRAW_MASKING_H__
8 
9 #include <tamtypes.h>
10 
12 #define SCAN_MASK_NORMAL 0
13 #define SCAN_MASK_ODD 2
14 #define SCAN_MASK_EVEN 3
15 
17 #define COLOR_CLAMP_MASK 0
18 #define COLOR_CLAMP_ENABLE 1
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
25 qword_t *draw_scan_masking(qword_t *q, int mask);
26 
28 qword_t *draw_color_clamping(qword_t *q, int enable);
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 #endif /* __DRAW_MASKING_H__ */
qword_t * draw_scan_masking(qword_t *q, int mask)
qword_t * draw_color_clamping(qword_t *q, int enable)