aboutsummaryrefslogtreecommitdiffstats
path: root/src/render/Lines.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-19 13:58:19 +0200
committeraap <aap@papnet.eu>2019-07-19 13:58:19 +0200
commit0ad39c020cfd4882b45bd1d26e521748e37b94a4 (patch)
tree736fde80727300b695e649c18e67be340b384985 /src/render/Lines.h
parent59145cea83da6d0ade8221dbe8c1469be8084ea0 (diff)
implemented col line rendering
Diffstat (limited to 'src/render/Lines.h')
-rw-r--r--src/render/Lines.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/render/Lines.h b/src/render/Lines.h
new file mode 100644
index 00000000..f2694fc0
--- /dev/null
+++ b/src/render/Lines.h
@@ -0,0 +1,7 @@
+#pragma once
+
+class CLines
+{
+public:
+ static void RenderLineWithClipping(float x1, float y1, float z1, float x2, float y2, float z2, uint32 c1, uint32 c2);
+};