r_segs.h (188B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 #ifndef __R_SEGS__ 24 #define __R_SEGS__ 25 26 27 #ifdef __GNUG__ 28 #pragma interface 29 #endif 30 31 32 void 33 R_RenderMaskedSegRange 34 ( drawseg_t* ds, 35 int x1, 36 int x2 ); 37 38 39 #endif 40 41 42 43 44