Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-05 19:05:50 +0000
committerStijn Buys <ingar@osirion.org>2008-10-05 19:05:50 +0000
commit9c3baab33a0fa48e7379f0485116452779a1cd37 (patch)
tree12f76da066d4fe7e062ff9cf33dd75fd80e0154e /src/render/gl.h
parenta8c367416c28edb47c8f8c447b515cca4080adc2 (diff)
interface with ui library
Diffstat (limited to 'src/render/gl.h')
-rw-r--r--src/render/gl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/render/gl.h b/src/render/gl.h
index fb8bdf2..6e32e35 100644
--- a/src/render/gl.h
+++ b/src/render/gl.h
@@ -10,6 +10,7 @@
#include "GL/gl.h"
#include "GL/glu.h"
+#include "math/vector2f.h"
#include "math/vector3f.h"
#include "math/matrix4f.h"
#include "math/axis.h"
@@ -105,6 +106,10 @@ namespace gl
void vertex(const float x, const float y, const float z);
+ void vertex(const math::Vector2f& vector);
+
+ void vertex(const float x, const float y);
+
/// glNormal
void normal(const math::Vector3f & vector);