Searched defs:tvec4 (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/include/ui/ |
D | vec4.h | 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 84 tvec4(const tvec3<A>& v, B w) : x(v.x), y(v.y), z(v.z), w(w) { } in tvec4() function 87 explicit tvec4(const tvec4<A>& v) : x(v.x), y(v.y), z(v.z), w(v.w) { } in tvec4() function 90 tvec4(const Impersonator< tvec4<A> >& v) in tvec4() function 97 tvec4(const Impersonator< tvec3<A> >& v, B w) in tvec4() function 104 tvec4(const Impersonator< tvec2<A> >& v, B z, C w) in tvec4() function
|