Home
last modified time | relevance | path

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

/external/skia/modules/svg/src/
DSkSVGRect.cpp46 return fRx.isValid() in resolve()
48 ? std::make_tuple(*fRx, *fRy) in resolve()
49 : std::make_tuple(*fRx, *fRx) in resolve()
DSkSVGEllipse.cpp26 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
/external/skqp/experimental/svg/model/
DSkSVGEllipse.cpp24 fRx = rx; in setRx()
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
DSkSVGRect.cpp33 fRx = rx; in setRx()
79 const SkScalar rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
DSkSVGEllipse.h41 SkSVGLength fRx = SkSVGLength(0); variable
DSkSVGRect.h47 SkSVGLength fRx = SkSVGLength(0); variable
/external/skia/modules/skottie/src/
DTransform.cpp152 this->bind(abuilder, jtransform["rx"], fRx); in TransformAdapter3D()
174 return static_cast<SkV3>(fOrientation) + SkV3{ fRx, fRy, fRz }; in rotation()
DTransform.h95 ScalarValue fRx = 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()