From 71c474416a592a00db1f136eec822b2dbce0132f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A5re=20Alsaker?= Date: Wed, 3 Oct 2012 17:30:05 +0200 Subject: tests: Remove GLfloat usage. --- tests/matrix-test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/matrix-test.c') diff --git a/tests/matrix-test.c b/tests/matrix-test.c index 8e9d13f1..cc78492f 100644 --- a/tests/matrix-test.c +++ b/tests/matrix-test.c @@ -22,7 +22,6 @@ #include #include -#include #include #include #include @@ -54,7 +53,7 @@ read_timer(void) } static double -det3x3(const GLfloat *c0, const GLfloat *c1, const GLfloat *c2) +det3x3(const float *c0, const float *c1, const float *c2) { return (double) c0[0] * c1[1] * c2[2] + -- cgit v1.2.1