aboutsummaryrefslogtreecommitdiff
path: root/src/parsec/include/do_iter.h
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
commitc068f22329d5cc722622a2183bbb22eef2093df7 (patch)
tree12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/do_iter.h
downloadopenparsec-c068f22329d5cc722622a2183bbb22eef2093df7.tar.xz
openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.zip
initial importHEADmain
Diffstat (limited to 'src/parsec/include/do_iter.h')
-rw-r--r--src/parsec/include/do_iter.h34
1 files changed, 34 insertions, 0 deletions
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_
+
+