1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* PARSEC HEADER: do_iter.h
*/
#ifndef _DO_ITER_H_
#define _DO_ITER_H_
// do_iter.c implements the following functions
// --------------------------------------------
// void D_BiasIterDepth( int bias );
// void D_LoadIterMatrix( Xmatrx matrix );
// void D_DrawIterPoint2( IterPoint2 *itpoint );
// void D_DrawIterPoint3( IterPoint3 *itpoint, dword cullmask );
// void D_DrawIterLine2( IterLine2 *itline );
// void D_DrawIterLine3( IterLine3 *itline, dword cullmask );
// void D_DrawIterTriangle2( IterTriangle2 *ittri );
// void D_DrawIterTriangle3( IterTriangle3 *ittri, dword cullmask );
// void D_DrawIterRectangle2( IterRectangle2 *itrect );
// void D_DrawIterRectangle3( IterRectangle3 *itrect, dword cullmask );
// void D_DrawIterPolygon2( IterPolygon2 *itpoly );
// void D_DrawIterPolygon3( IterPolygon3 *itpoly, dword cullmask );
// void D_DrawIterTriStrip2( IterTriStrip2 *itstrip );
// void D_DrawIterTriStrip3( IterTriStrip3 *itstrip, dword cullmask );
// void D_LockIterArray2( IterArray2 *itarray, dword first, dword count );
// void D_LockIterArray3( IterArray3 *itarray, dword first, dword count );
// void D_UnlockIterArray();
// void D_DrawIterArray( dword mode, dword first, dword count, dword cullmask );
// void D_DrawIterArrayIndexed( dword mode, dword count, dword *indexes, dword cullmask );
#endif // _DO_ITER_H_
|