• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _TCUVECTORTYPE_HPP
2 #define _TCUVECTORTYPE_HPP
3 /*-------------------------------------------------------------------------
4  * drawElements Quality Program Tester Core
5  * ----------------------------------------
6  *
7  * Copyright 2014 The Android Open Source Project
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  *//*!
22  * \file
23  * \brief Vector type forward declarations.
24  *
25  * This header should be included instead of tcuVector.h if only vector
26  * type name is required. Especially headers should avoid including full
27  * Vector<T> implementation.
28  *//*--------------------------------------------------------------------*/
29 
30 #include "tcuDefs.hpp"
31 
32 namespace tcu
33 {
34 
35 template <typename T, int Size>
36 class Vector;
37 
38 typedef Vector<float, 2>	Vec2;
39 typedef Vector<float, 3>	Vec3;
40 typedef Vector<float, 4>	Vec4;
41 
42 typedef Vector<int, 2>		IVec2;
43 typedef Vector<int, 3>		IVec3;
44 typedef Vector<int, 4>		IVec4;
45 
46 typedef Vector<deUint32, 2>	UVec2;
47 typedef Vector<deUint32, 3>	UVec3;
48 typedef Vector<deUint32, 4>	UVec4;
49 
50 typedef Vector<bool, 2>		BVec2;
51 typedef Vector<bool, 3>		BVec3;
52 typedef Vector<bool, 4>		BVec4;
53 
54 } // tcu
55 
56 #endif // _TCUVECTORTYPE_HPP
57