summaryrefslogtreecommitdiff
path: root/common/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/matrix.h')
-rw-r--r--common/matrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/matrix.h b/common/matrix.h
index 32f5f74..7da4d1d 100644
--- a/common/matrix.h
+++ b/common/matrix.h
@@ -48,7 +48,7 @@ class Matrix
void RotateCenter(float angle, float x, float y, float z, float px, float py, float pz);
bool FromInverse(double* src);
void CreatePerspective (float fovy, float aspect, float nearval, float farval);
- void CreateLookat (float eye[3], float target[3], float up[3]);
+ void CreateLookat (const float *eye, const float *target, const float *up);
public:
float m[16];