OpenGL_Clock/Include/matrix.h

13 lines
200 B
C
Raw Normal View History

2018-04-15 22:40:13 +00:00
#ifndef MATRIX_H
#define MATRIX_H
2018-04-22 22:40:31 +00:00
GLfloat *matrix_new(void);
2018-04-15 22:40:13 +00:00
2018-04-22 22:40:31 +00:00
GLfloat *matrix_multip(GLfloat *, GLfloat *);
GLfloat *matrix_transform(GLfloat *, int,
GLfloat *);
2018-04-15 22:40:13 +00:00
#endif
2018-04-22 22:40:31 +00:00