From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- src/parsec/include/do_iter.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/parsec/include/do_iter.h (limited to 'src/parsec/include/do_iter.h') diff --git a/src/parsec/include/do_iter.h b/src/parsec/include/do_iter.h new file mode 100644 index 0000000..97b8bbb --- /dev/null +++ b/src/parsec/include/do_iter.h @@ -0,0 +1,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_ + + -- cgit v1.2.3