Revision: | 2.7 |
Committed: | Tue Jun 22 13:40:54 2004 UTC (20 years, 9 months ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1 |
Changes since 2.6: | +3 -1 lines |
Log Message: | Added isopaque() macro to otspecial.h |
# | Content |
---|---|
1 | /* RCSid $Id: otspecial.h,v 2.6 2003/12/31 01:50:02 greg Exp $ */ |
2 | /* |
3 | * Special type flags for objects used in rendering. |
4 | * Depends on definitions in otypes.h |
5 | */ |
6 | #ifndef _RAD_OTSPECIAL_H_ |
7 | #define _RAD_OTSPECIAL_H_ |
8 | #ifdef __cplusplus |
9 | extern "C" { |
10 | #endif |
11 | |
12 | /* flag for materials to ignore during irradiance comp. */ |
13 | #define T_IRR_IGN T_SP1 |
14 | |
15 | /* flag for completely opaque materials */ |
16 | #define T_OPAQUE T_SP2 |
17 | |
18 | #define irr_ignore(t) (ofun[t].flags & T_IRR_IGN) |
19 | |
20 | #define isopaque(t) (ofun[t].flags & T_OPAQUE) |
21 | |
22 | |
23 | #ifdef __cplusplus |
24 | } |
25 | #endif |
26 | #endif /* _RAD_OTSPECIAL_H_ */ |
27 |