HomeSort by relevance Sort by last modified time
    Searched full:tvec3 (Results 1 - 14 of 14) sorted by null

  /frameworks/native/include/ui/
vec3.h 29 class tvec3 : public TVecProductOperators<tvec3, T>, class in namespace:android
30 public TVecAddOperators<tvec3, T>,
31 public TVecUnaryOperators<tvec3, T>,
32 public TVecComparisonOperators<tvec3, T>,
33 public TVecFunctions<tvec3, T>
64 explicit tvec3(no_init) { } function in class:android::tvec3
67 tvec3() : x(0), y(0), z(0) { } function in class:android::tvec3
71 tvec3(A v) : x(v), y(v), z(v) { } function in class:android::tvec3
74 tvec3(A x, B y, C z) : x(x), y(y), z(z) { function in class:android::tvec3
77 tvec3(const tvec2<A>& v, B z) : x(v.x), y(v.y), z(z) { } function in class:android::tvec3
80 explicit tvec3(const tvec3<A>& v) : x(v.x), y(v.y), z(v.z) { } function in class:android::tvec3
83 tvec3(const Impersonator< tvec3<A> >& v) function in class:android::tvec3
89 tvec3(const Impersonator< tvec2<A> >& v, B z) function in class:android::tvec3
    [all...]
vec4.h 49 Impersonator< tvec3<T> > xyz;
50 Impersonator< tvec3<T> > stp;
51 Impersonator< tvec3<T> > rgb;
84 tvec4(const tvec3<A>& v, B w) : x(v.x), y(v.y), z(v.z), w(w) { }
97 tvec4(const Impersonator< tvec3<A> >& v, B w)
98 : x(((const tvec3<A>&)v).x),
99 y(((const tvec3<A>&)v).y),
100 z(((const tvec3<A>&)v).z),
mat4.h 139 static tmat44 lookAt(const tvec3<A>& eye, const tvec3<B>& center, const tvec3<C>& up);
148 static tmat44 rotate(A radian, const tvec3<B>& about);
263 tmat44<T> tmat44<T>::lookAt(const tvec3<A>& eye, const tvec3<B>& center, const tvec3<C>& up) {
264 tvec3<T> L(normalize(center - eye));
265 tvec3<T> S(normalize( cross(L, up) ));
266 tvec3<T> U(cross(S, L))
    [all...]
  /frameworks/native/libs/ui/tests/
vec_test.cpp 252 tvec3<double> vd(east);
  /external/chromium_org/third_party/skia/src/effects/
SkLightingImageFilter.cpp     [all...]
SkPerlinNoiseShader.cpp     [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp     [all...]
SkPerlinNoiseShader.cpp     [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAAHairLinePathRenderer.cpp 826 builder->fsCodeAppendf("\t\tvec3 dklmdx = dFdx(%s.xyz);\n", fsName);
827 builder->fsCodeAppendf("\t\tvec3 dklmdy = dFdy(%s.xyz);\n", fsName);
    [all...]
  /external/skia/src/gpu/
GrAAHairLinePathRenderer.cpp 826 builder->fsCodeAppendf("\t\tvec3 dklmdx = dFdx(%s.xyz);\n", fsName);
827 builder->fsCodeAppendf("\t\tvec3 dklmdy = dFdy(%s.xyz);\n", fsName);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkXfermode.cpp     [all...]
  /external/skia/src/core/
SkXfermode.cpp     [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.cpp 463 builder.vsCodeAppendf("\tvec3 pos3 = %s * vec3(%s, 1);\n"
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgram.cpp 463 builder.vsCodeAppendf("\tvec3 pos3 = %s * vec3(%s, 1);\n"
    [all...]

Completed in 576 milliseconds