]> git.tdb.fi Git - libs/gl.git/blob - source/transform.h
Add vertex arrays and buffers
[libs/gl.git] / source / transform.h
1 #ifndef MSP_GL_TRANSFORM_H_
2 #define MSP_GL_TRANSFORM_H_
3
4 namespace Msp {
5 namespace GL {
6
7 void translate(float, float, float);
8 void rotate(float, float, float, float);
9 void scale(float, float, float);
10 void scale_uniform(float);
11
12 } // namespace GL
13 } // namespace Msp
14
15 #endif