Home
last modified time | relevance | path

Searched refs:cEdge (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/core/
DSkScan_AAAPath.cpp1053 const SkCubicEdge& cEdge = static_cast<SkAnalyticCubicEdge*>(thisEdge)->fCEdge; in is_smooth_enough() local
1054 int ddshift = cEdge.fCurveShift; in is_smooth_enough()
1055 return SkAbs32(cEdge.fCDx) >> 1 >= SkAbs32(cEdge.fCDDx) >> ddshift && in is_smooth_enough()
1056 SkAbs32(cEdge.fCDy) >> 1 >= SkAbs32(cEdge.fCDDy) >> ddshift && in is_smooth_enough()
1058 (cEdge.fCDy - (cEdge.fCDDy >> ddshift)) >> cEdge.fCubicDShift >= SK_Fixed1; in is_smooth_enough()
/external/skqp/src/core/
DSkScan_AAAPath.cpp952 const SkCubicEdge& cEdge = static_cast<SkAnalyticCubicEdge*>(thisEdge)->fCEdge; in isSmoothEnough() local
953 int ddshift = cEdge.fCurveShift; in isSmoothEnough()
954 return SkAbs32(cEdge.fCDx) >> 1 >= SkAbs32(cEdge.fCDDx) >> ddshift && in isSmoothEnough()
955 SkAbs32(cEdge.fCDy) >> 1 >= SkAbs32(cEdge.fCDDy) >> ddshift && in isSmoothEnough()
957 (cEdge.fCDy - (cEdge.fCDDy >> ddshift)) >> cEdge.fCubicDShift >= SK_Fixed1; in isSmoothEnough()