From 3ef449763504f790c6313e3b1804660446de3414 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 9 Apr 2011 11:01:42 +0100 Subject: [PATCH] Updated test --- test/gtc/gtc_type_ptr.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/gtc/gtc_type_ptr.cpp b/test/gtc/gtc_type_ptr.cpp index 0b9bc908..e80021d7 100644 --- a/test/gtc/gtc_type_ptr.cpp +++ b/test/gtc/gtc_type_ptr.cpp @@ -11,9 +11,17 @@ #include #include +bool test_make_pointer() +{ + float ArrayA[] = {1, 2, 3, 4}; + glm::vec4 Vec4A = glm::make_vec4(ArrayA); +} + int main() { int Failed = 0; + + Failed += test_make_pointer() ? 0 : 1; return Failed; }