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, 1> Vec1; 39 typedef Vector<float, 2> Vec2; 40 typedef Vector<float, 3> Vec3; 41 typedef Vector<float, 4> Vec4; 42 43 typedef Vector<int, 1> IVec1; 44 typedef Vector<int, 2> IVec2; 45 typedef Vector<int, 3> IVec3; 46 typedef Vector<int, 4> IVec4; 47 48 typedef Vector<deUint32, 1> UVec1; 49 typedef Vector<deUint32, 2> UVec2; 50 typedef Vector<deUint32, 3> UVec3; 51 typedef Vector<deUint32, 4> UVec4; 52 53 typedef Vector<bool, 1> BVec1; 54 typedef Vector<bool, 2> BVec2; 55 typedef Vector<bool, 3> BVec3; 56 typedef Vector<bool, 4> BVec4; 57 58 typedef Vector<double, 2> DVec2; 59 typedef Vector<double, 3> DVec3; 60 typedef Vector<double, 4> DVec4; 61 62 } // tcu 63 64 #endif // _TCUVECTORTYPE_HPP 65