]> git.tdb.fi Git - libs/gl.git/blobdiff - source/transform.h
Add vertex arrays and buffers
[libs/gl.git] / source / transform.h
diff --git a/source/transform.h b/source/transform.h
new file mode 100644 (file)
index 0000000..520cf3b
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef MSP_GL_TRANSFORM_H_
+#define MSP_GL_TRANSFORM_H_
+
+namespace Msp {
+namespace GL {
+
+void translate(float, float, float);
+void rotate(float, float, float, float);
+void scale(float, float, float);
+void scale_uniform(float);
+
+} // namespace GL
+} // namespace Msp
+
+#endif