Home | History | Annotate | Download | only in common

Lines Matching refs:Vector

23  * \brief Vector type forward declarations.
25 * This header should be included instead of tcuVector.h if only vector
27 * Vector<T> implementation.
36 class Vector;
38 typedef Vector<float, 2> Vec2;
39 typedef Vector<float, 3> Vec3;
40 typedef Vector<float, 4> Vec4;
42 typedef Vector<int, 2> IVec2;
43 typedef Vector<int, 3> IVec3;
44 typedef Vector<int, 4> IVec4;
46 typedef Vector<deUint32, 2> UVec2;
47 typedef Vector<deUint32, 3> UVec3;
48 typedef Vector<deUint32, 4> UVec4;
50 typedef Vector<bool, 2> BVec2;
51 typedef Vector<bool, 3> BVec3;
52 typedef Vector<bool, 4> BVec4;