Home
last modified time | relevance | path

Searched defs:lerp (Results 1 - 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DVector.cpp169 Vector lerp(const Vector &u, const Vector &v, float t) in lerp() function
/third_party/skia/experimental/lowp-basic/
H A Dlerp-study.cpp85 static Stats check_lerp(Lerp lerp) { in check_lerp() argument
/third_party/skia/third_party/externals/swiftshader/third_party/marl/examples/
H A Dfractal.cpp60 inline float lerp(float x, float min, float max) { in lerp() function
/third_party/skia/gm/
H A Dtrickycubicstrokes.cpp94 static SkPoint lerp(const SkPoint& a, const SkPoint& b, float T) { in lerp() function
/third_party/skia/modules/skottie/src/layers/shapelayer/
H A DPuckerBloat.cpp23 static SkPoint lerp(const SkPoint& p0, const SkPoint& p1, SkScalar t) { in lerp() function
H A DGradient.cpp159 auto lerp = [](float a, float b, float t) { return a + t * (b - a); }; variable
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Dcompatibility.hpp38 template <typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
39 template <typename T, precision P> GLM_FUNC_QUALIFIER tvec2<T, P> lerp(const tvec2<T, P>& x, const tvec2<T, P>& y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
41 template <typename T, precision P> GLM_FUNC_QUALIFIER tvec3<T, P> lerp(const tvec3<T, P>& x, const tvec3<T, P>& y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
42 template <typename T, precision P> GLM_FUNC_QUALIFIER tvec4<T, P> lerp(const tvec4<T, P>& x, const tvec4<T, P>& y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
43 template <typename T, precision P> GLM_FUNC_QUALIFIER tvec2<T, P> lerp(const tvec2<T, P>& x, const tvec2<T, P>& y, const tvec2<T, P>& a){return mix(x, y, a);} //!< \brief Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
44 template <typename T, precision P> GLM_FUNC_QUALIFIER tvec3<T, P> lerp(const tvec3<T, P>& x, const tvec3<T, P>& y, const tvec3<T, P>& a){return mix(x, y, a);} //!< \brief Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
45 template <typename T, precision P> GLM_FUNC_QUALIFIER tvec4<T, P> lerp(const tvec4<T, P>& x, const tvec4<T, P>& y, const tvec4<T, P>& a){return mix(x, y, a);} //!< \brief Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility) in lerp() function
/third_party/skia/samplecode/
H A DSampleFitCubicToCircle.cpp79 static double lerp(double x, double y, double T) { in lerp() function
/third_party/skia/src/core/
H A DSkCompressedDataUtils.cpp170 static SkPMColor lerp(float t, SkPMColor col0, SkPMColor col1) { in lerp() function
H A DSkDraw_vertices.cpp238 auto lerp = [](SkPoint3 curr, SkPoint3 next, float t) { in fill_triangle_3() local
H A DSkVM.cpp1455 F32 Builder::lerp(F32 lo, F32 hi, F32 t) { in lerp() function in skvm::Builder
1461 Color Builder::lerp(Color lo, Color hi, F32 t) { in lerp() function in skvm::Builder
H A DSkVM.h777 F32 lerp(F32 lo, F32 hi, float t) { return lerp( lo , hi , splat(t)); } in lerp() function in skvm::Builder
778 F32 lerp(F32 lo, float hi, float t) { return lerp( lo , splat(hi), splat(t)); } in lerp() function in skvm::Builder
779 F32 lerp(F32 lo, float hi, F32 t) { return lerp( lo , splat(hi), t ); } in lerp() function in skvm::Builder
780 F32 lerp(float lo, F32 hi, F32 t) { return lerp(splat(lo), hi , t ); } in lerp() function in skvm::Builder
781 F32 lerp(floa in lerp() function in skvm::Builder
782 F32 lerp(float lo, float hi, F32 t) { return lerp(splat(lo), splat(hi), t ); } lerp() function in skvm::Builder
1244 SI F32 lerp(F32 lo, F32 hi, F32 t) { return lo->lerp(lo,hi,t); } lerp() function
1245 SI F32 lerp(F32 lo, F32 hi, float t) { return lo->lerp(lo,hi,t); } lerp() function
1246 SI F32 lerp(F32 lo, float hi, F32 t) { return lo->lerp(lo,hi,t); } lerp() function
1247 SI F32 lerp(F32 lo, float hi, float t) { return lo->lerp(lo,hi,t); } lerp() function
1248 SI F32 lerp(float lo, F32 hi, F32 t) { return hi->lerp(lo,hi,t); } lerp() function
1249 SI F32 lerp(float lo, F32 hi, float t) { return hi->lerp(lo,hi,t); } lerp() function
1250 SI F32 lerp(float lo, float hi, F32 t) { return t->lerp(lo,hi,t); } lerp() function
1324 SI Color lerp(Color lo, Color hi, F32 t) { return t->lerp(lo,hi,t); } lerp() function
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_sidebar.py282 def lerp(a, b, steps): function
/third_party/skia/tests/
H A DGeometryTest.cpp522 SkPoint lerp(const SkPoint& a, const SkPoint& b, float t) { in lerp() function
/third_party/ffmpeg/libavfilter/
H A Dvf_lut3d.c89 static inline struct rgbvec lerp(const struct rgbvec *v0, const struct rgbvec *v1, float f) in lerp() function
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-glyf-table.hh1143 optional_point_t lerp (optional_point_t p, float t) in lerp() function
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c73 lerp(float a, float v0, float v1) in lerp() function

Completed in 32 milliseconds