Home
last modified time | relevance | path

Searched refs:curV (Results 1 – 3 of 3) sorted by relevance

/external/skqp/gm/
Dwacky_yuv_formats.cpp112 SkVector curV = SkVector::Make(0.0f, 1.0f); in create_splat() local
119 p.moveTo(o.fX + innerRadius * curV.fX, o.fY + innerRadius * curV.fY); in create_splat()
125 nextV = outerStep.mapVector(curV.fX, curV.fY); in create_splat()
127 SkPoint top = SkPoint::Make(o.fX + outerRadius * curV.fX, in create_splat()
128 o.fY + outerRadius * curV.fY); in create_splat()
133 add_arc(&p, top, curV, nextTop, nextV, circles, true); in create_splat()
135 nextV = innerStep.mapVector(curV.fX, curV.fY); in create_splat()
137 SkPoint bot = SkPoint::Make(o.fX + innerRadius * curV.fX, in create_splat()
138 o.fY + innerRadius * curV.fY); in create_splat()
143 add_arc(&p, bot, curV, nextBot, nextV, nullptr, false); in create_splat()
[all …]
/external/skia/gm/
Dwacky_yuv_formats.cpp281 SkVector curV = SkVector::Make(0.0f, 1.0f); in create_splat() local
288 p.moveTo(o.fX + innerRadius * curV.fX, o.fY + innerRadius * curV.fY); in create_splat()
294 nextV = outerStep.mapVector(curV.fX, curV.fY); in create_splat()
296 SkPoint top = SkPoint::Make(o.fX + outerRadius * curV.fX, in create_splat()
297 o.fY + outerRadius * curV.fY); in create_splat()
302 add_arc(&p, top, curV, nextTop, nextV, circles, true); in create_splat()
304 nextV = innerStep.mapVector(curV.fX, curV.fY); in create_splat()
306 SkPoint bot = SkPoint::Make(o.fX + innerRadius * curV.fX, in create_splat()
307 o.fY + innerRadius * curV.fY); in create_splat()
312 add_arc(&p, bot, curV, nextBot, nextV, nullptr, false); in create_splat()
[all …]
/external/skqp/src/core/
DSkPath.cpp2714 SkDEBUGCODE(SkVector curV = fCurrPt - fLastPt); in directionChange()
2715 SkDEBUGCODE(SkScalar crossV = SkPoint::CrossProduct(lastV, curV)); in directionChange()