Searched defs:stroked (Results 1 - 4 of 4) sorted by relevance

/external/skia/gm/
H A Dreveal.cpp118 // In this case we want the outline of the stroked rrect
124 SkPath p, stroked; variable
127 stroke.strokePath(p, &stroked);
128 return stroked;
/external/skia/src/gpu/ops/
H A DGrShadowRRectOp.cpp32 // For stroked circles, we use two nested octagons.
52 static int circle_type_to_vert_count(bool stroked) { argument
53 return stroked ? kVertsPerStrokeCircle : kVertsPerFillCircle;
56 static int circle_type_to_index_count(bool stroked) { argument
57 return stroked ? kIndicesPerStrokeCircle : kIndicesPerFillCircle;
60 static const uint16_t* circle_type_to_indices(bool stroked) { argument
61 return stroked ? gStrokeCircleIndices : gFillCircleIndices;
104 bool stroked = isStrokeOnly && innerRadius > 0.0f; local
112 Circle{color, outerRadius, innerRadius, blurRadius, devBounds, stroked});
120 op->fVertCount = circle_type_to_vert_count(stroked);
[all...]
H A DGrOvalOpFactory.cpp397 * specified as a 2D offset from center for both the outer and inner paths (if stroked). The
576 // For stroked circles, we use two nested octagons.
597 static int circle_type_to_vert_count(bool stroked) { argument
598 return stroked ? kVertsPerStrokeCircle : kVertsPerFillCircle;
601 static int circle_type_to_index_count(bool stroked) { argument
602 return stroked ? kIndicesPerStrokeCircle : kIndicesPerFillCircle;
605 static const uint16_t* circle_type_to_indices(bool stroked) { argument
606 return stroked ? gStrokeCircleIndices : gFillCircleIndices;
679 bool stroked = isStrokeOnly && innerRadius > 0.0f; local
722 stroked});
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.c74 } stroked; member in struct:path
234 if (p->stroked.path)
235 path_destroy(p->stroked.path);
1241 if (p->stroked.path)
1246 if (memcmp( &p->stroked.matrix,
1250 floatsEqual(p->stroked.stroke_width, vg_state->stroke.line_width.f) &&
1251 floatsEqual(p->stroked.miter_limit, vg_state->stroke.miter_limit.f) &&
1252 p->stroked.cap_style == vg_state->stroke.cap_style &&
1253 p->stroked.join_style == vg_state->stroke.join_style)
1255 return p->stroked
[all...]

Completed in 131 milliseconds