HomeSort by relevance Sort by last modified time
    Searched refs:tvec4 (Results 1 - 3 of 3) sorted by null

  /frameworks/native/include/ui/
vec4.h 29 class tvec4 : public TVecProductOperators<tvec4, T>, class in namespace:android
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) { } function in class:android::tvec4
71 tvec4() : x(0), y(0), z(0), w(0) { } function in class:android::tvec4
73 // handles implicit conversion to a tvec4. must not be explicit.
75 tvec4(A v) : x(v), y(v), z(v), w(v) { function in class:android::tvec4
78 tvec4(A x, B y, C z, D w) : x(x), y(y), z(z), w(w) { } function in class:android::tvec4
81 tvec4(const tvec2<A>& v, B z, C w) : x(v.x), y(v.y), z(z), w(w) { } function in class:android::tvec4
84 tvec4(const tvec3<A>& v, B w) : x(v.x), y(v.y), z(v.z), w(w) { } function in class:android::tvec4
87 explicit tvec4(const tvec4<A>& v) : x(v.x), y(v.y), z(v.z), w(v.w) { } function in class:android::tvec4
90 tvec4(const Impersonator< tvec4<A> >& v) function in class:android::tvec4
97 tvec4(const Impersonator< tvec3<A> >& v, B w) function in class:android::tvec4
104 tvec4(const Impersonator< tvec2<A> >& v, B z, C w) function in class:android::tvec4
    [all...]
mat4.h 48 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)
    [all...]
  /frameworks/native/libs/ui/tests/
vec_test.cpp 79 tvec4<double> vd(2);
190 tvec4<double> dv(1,2,3,4);
230 tvec4<double> vd(2);

Completed in 800 milliseconds