Home
last modified time | relevance | path

Searched refs:tvec4 (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/include/ui/
Dvec4.h29 class tvec4 : public TVecProductOperators<tvec4, T>,
30 public TVecAddOperators<tvec4, T>,
31 public TVecUnaryOperators<tvec4, T>,
32 public TVecComparisonOperators<tvec4, T>,
33 public TVecFunctions<tvec4, T>
68 explicit tvec4(no_init) { } in tvec4() function
71 tvec4() : x(0), y(0), z(0), w(0) { } in tvec4() function
75 tvec4(A v) : x(v), y(v), z(v), w(v) { } in tvec4() function
78 tvec4(A x, B y, C z, D w) : x(x), y(y), z(z), w(w) { } in tvec4() function
81 tvec4(const tvec2<A>& v, B z, C w) : x(v.x), y(v.y), z(z), w(w) { } in tvec4() function
[all …]
Dmat4.h48 typedef tvec4<T> col_type;
49 typedef tvec4<T> row_type;
105 explicit tmat44(const tvec4<U>& rhs);
113 tmat44(const tvec4<A>& v0, const tvec4<B>& v1, const tvec4<C>& v2, const tvec4<D>& v3);
142 static tmat44 translate(const tvec4<A>& t);
145 static tmat44 scale(const tvec4<A>& s);
179 tmat44<T>::tmat44(const tvec4<U>& v) { in tmat44()
212 tmat44<T>::tmat44(const tvec4<A>& v0, const tvec4<B>& v1, const tvec4<C>& v2, const tvec4<D>& v3) { in tmat44()
268 tvec4<T>( S, 0), in lookAt()
269 tvec4<T>( U, 0), in lookAt()
[all …]
/frameworks/native/libs/ui/tests/
Dvec_test.cpp80 tvec4<double> vd(2); in TEST_F()
191 tvec4<double> dv(1,2,3,4); in TEST_F()
231 tvec4<double> vd(2); in TEST_F()