Lines Matching refs:fDepth
88 if (fDepth > 0.f) {
89 name.appendf("-curve-%.2f", fDepth);
91 } else if (fDepth > 0.f) {
92 name.appendf("curve-%.2f", fDepth);
93 } else if (fDepth < 0.f) {
94 name.appendf("line-%.2f", -fDepth);
103 return sk_sp<ShapeRenderer>(new PathRenderer(fDepth, true));
110 if (fDepth > 0.f) {
111 path.quadTo(kTileWidth / 2.f + fDepth, kTileHeight / 2.f,
114 if (fDepth < 0.f) {
115 path.lineTo(kTileWidth / 2.f + fDepth, kTileHeight / 2.f);
145 SkScalar fDepth; // 0.f to make a line, otherwise outset of curve from end points
149 : fDepth(depth)