aboutsummaryrefslogtreecommitdiff
path: root/tests/glmark2/src/libmatrix/test/const_vec_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/glmark2/src/libmatrix/test/const_vec_test.h')
-rw-r--r--tests/glmark2/src/libmatrix/test/const_vec_test.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/glmark2/src/libmatrix/test/const_vec_test.h b/tests/glmark2/src/libmatrix/test/const_vec_test.h
new file mode 100644
index 00000000..834f4a8c
--- /dev/null
+++ b/tests/glmark2/src/libmatrix/test/const_vec_test.h
@@ -0,0 +1,39 @@
+//
+// Copyright (c) 2011 Linaro Limited
+//
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the MIT License which accompanies
+// this distribution, and is available at
+// http://www.opensource.org/licenses/mit-license.php
+//
+// Contributors:
+// Jesse Barker - original implementation.
+//
+#ifndef CONST_VEC_TEST_H_
+#define CONST_VEC_TEST_H_
+
+class MatrixTest;
+class Options;
+
+class Vec2TestConstOperator : public MatrixTest
+{
+public:
+ Vec2TestConstOperator() : MatrixTest("vec2::const") {}
+ virtual void run(const Options& options);
+};
+
+class Vec3TestConstOperator : public MatrixTest
+{
+public:
+ Vec3TestConstOperator() : MatrixTest("vec3::const") {}
+ virtual void run(const Options& options);
+};
+
+class Vec4TestConstOperator : public MatrixTest
+{
+public:
+ Vec4TestConstOperator() : MatrixTest("vec4::const") {}
+ virtual void run(const Options& options);
+};
+
+#endif // CONST_VEC_TEST_H_