repo.or.cz
/
canaan.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
convert line ends
[canaan.git]
/
prj
/
tech
/
libsrc
/
r3d
/
primcon.h
blob
00ee384db655a2c4f1b77be9634d7f2ad6867931
1
// $Header: x:/prj/tech/libsrc/r3d/RCS/primcon.h 1.5 1996/06/06 19:08:43 JAEMZ Exp $
2
3
#ifndef __PRIMCON_H
4
#define __PRIMCON_H
5
6
#include <r3ds.h>
7
8
typedef
struct
9
{
10
ulong color
;
11
12
r3s_texture bm
;
// default texture if poly
13
14
// flags which indicate what function we use
15
uchar clip_2d
;
16
17
uchar point_flags
;
18
uchar line_flags
;
19
uchar poly_flags
;
20
21
uchar bm_type
;
// plus transparency flag
22
}
r3s_prim_context
;
23
24
#endif