summaryrefslogtreecommitdiffstats
path: root/src/graphics/core/device.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-07-30 22:32:28 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-07-30 22:32:28 +0200
commitd8a0c8d32e160e7ae86bb5b85ead8e5f71b1fd01 (patch)
treec4723373e5e070b28983a262bd136fd30c69a507 /src/graphics/core/device.h
parent220ff9fe52fb2940f71592f121e6238203eae902 (diff)
downloadcolobot-d8a0c8d32e160e7ae86bb5b85ead8e5f71b1fd01.tar.gz
colobot-d8a0c8d32e160e7ae86bb5b85ead8e5f71b1fd01.tar.bz2
colobot-d8a0c8d32e160e7ae86bb5b85ead8e5f71b1fd01.zip
Lines and line strip primitives
Will probably be useful
Diffstat (limited to 'src/graphics/core/device.h')
-rw-r--r--src/graphics/core/device.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphics/core/device.h b/src/graphics/core/device.h
index 1f6cacf..c10b853 100644
--- a/src/graphics/core/device.h
+++ b/src/graphics/core/device.h
@@ -179,12 +179,12 @@ enum FillMode
/**
\enum PrimitiveType
- \brief Type of primitive to render
-
- Only these two types are used. */
+ \brief Type of primitive to render */
enum PrimitiveType
{
+ PRIMITIVE_POINTS,
PRIMITIVE_LINES,
+ PRIMITIVE_LINE_STRIP,
PRIMITIVE_TRIANGLES,
PRIMITIVE_TRIANGLE_STRIP
};