summaryrefslogtreecommitdiffstats
path: root/hacks/glx/tangram_shapes.h
diff options
context:
space:
mode:
Diffstat (limited to 'hacks/glx/tangram_shapes.h')
-rw-r--r--hacks/glx/tangram_shapes.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/hacks/glx/tangram_shapes.h b/hacks/glx/tangram_shapes.h
new file mode 100644
index 0000000..254f8f3
--- /dev/null
+++ b/hacks/glx/tangram_shapes.h
@@ -0,0 +1,15 @@
+#ifndef TANGRAM_SHAPES_H
+#define TANGRAM_SHAPES_H
+
+/* get_sm_tri_dl - Get small triangle Display List */
+GLuint tangram_get_sm_tri_dl(int wire);
+/* get_lg_tri_dl - Get large triangle Display List */
+GLuint tangram_get_lg_tri_dl(int wire);
+/* get_md_tri_dl - Get medium triangle Display List */
+GLuint tangram_get_md_tri_dl(int wire);
+/* get_square_dl - Get square Display List */
+GLuint tangram_get_square_dl(int wire);
+/* get_rhomboid_dl - Get rhomboid Display List */
+GLuint tangram_get_rhomboid_dl(int wire);
+
+#endif