summaryrefslogtreecommitdiffstats
path: root/Smoke/normals.c
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2008-01-07 03:40:59 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2008-01-07 03:40:59 (GMT)
commit8dc29e0202fb48c078aebf271b31e903a1076d95 (patch)
tree6c0dc33a9ddc7ce1fcee675df16fb70a785af95c /Smoke/normals.c
parent5297d5f9565da695a6a9891f829118ecaea6ad8a (diff)
download2iv35-8dc29e0202fb48c078aebf271b31e903a1076d95.zip
2iv35-8dc29e0202fb48c078aebf271b31e903a1076d95.tar.gz
2iv35-8dc29e0202fb48c078aebf271b31e903a1076d95.tar.bz2
more normal drawing
Diffstat (limited to 'Smoke/normals.c')
-rw-r--r--Smoke/normals.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/Smoke/normals.c b/Smoke/normals.c
new file mode 100644
index 0000000..0684b6a
--- /dev/null
+++ b/Smoke/normals.c
@@ -0,0 +1,28 @@
+#include "funcs.h"
+
+#include "normals.h"
+
+
+static int normals_render = FALSE;
+static int normals_render2 = FALSE;
+
+
+int normals_get_render(void)
+{
+ return normals_render;
+}
+
+void normals_set_render(int render_normals)
+{
+ normals_render = render_normals;
+}
+
+int normals_get_render2(void)
+{
+ return normals_render2;
+}
+
+void normals_set_render2(int render_normals)
+{
+ normals_render2 = render_normals;
+}