Home
last modified time | relevance | path

Searched defs:tvec3 (Results 1 – 1 of 1) sorted by relevance

/frameworks/native/include/ui/
Dvec3.h64 explicit tvec3(no_init) { } in tvec3() function
67 tvec3() : x(0), y(0), z(0) { } in tvec3() function
71 tvec3(A v) : x(v), y(v), z(v) { } in tvec3() function
74 tvec3(A x, B y, C z) : x(x), y(y), z(z) { } in tvec3() function
77 tvec3(const tvec2<A>& v, B z) : x(v.x), y(v.y), z(z) { } in tvec3() function
80 explicit tvec3(const tvec3<A>& v) : x(v.x), y(v.y), z(v.z) { } in tvec3() function
83 tvec3(const Impersonator< tvec3<A> >& v) in tvec3() function
89 tvec3(const Impersonator< tvec2<A> >& v, B z) in tvec3() function