Home
last modified time | relevance | path

Searched refs:fRy (Results 1 – 9 of 9) sorted by relevance

/external/skia/modules/svg/src/
DSkSVGRect.cpp47 ? fRy.isValid() in resolve()
48 ? std::make_tuple(*fRx, *fRy) in resolve()
50 : fRy.isValid() in resolve()
51 ? std::make_tuple(*fRy, *fRy) in resolve()
DSkSVGEllipse.cpp27 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve()
/external/skqp/experimental/svg/model/
DSkSVGEllipse.cpp28 fRy = ry; in setRy()
62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve()
DSkSVGRect.cpp37 fRy = ry; in setRy()
80 const SkScalar ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve()
DSkSVGEllipse.h42 SkSVGLength fRy = SkSVGLength(0); variable
DSkSVGRect.h49 SkSVGLength fRy = SkSVGLength(0); variable
/external/skia/modules/skottie/src/
DTransform.cpp153 this->bind(abuilder, jtransform["ry"], fRy); in TransformAdapter3D()
174 return static_cast<SkV3>(fOrientation) + SkV3{ fRx, fRy, fRz }; in rotation()
DTransform.h96 fRy = 0, variable
/external/skia/samplecode/
DSample3D.cpp105 SkScalar fRx, fRy; member
117 return R({0,1,0}, fRy) * R({1,0,0}, fRx) * T(0, 0, scale); in asM44()