Home | History | Annotate | Download | only in ops

Lines Matching defs:stroked

397  * 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) {
598 return stroked ? kVertsPerStrokeCircle : kVertsPerFillCircle;
601 static int circle_type_to_index_count(bool stroked) {
602 return stroked ? kIndicesPerStrokeCircle : kIndicesPerFillCircle;
605 static const uint16_t* circle_type_to_indices(bool stroked) {
606 return stroked ? gStrokeCircleIndices : gFillCircleIndices;
679 bool stroked = isStrokeOnly && innerRadius > 0.0f;
722 stroked});
734 stroked});
757 stroked});
771 stroked});
782 op->fVertCount = circle_type_to_vert_count(stroked);
783 op->fIndexCount = circle_type_to_index_count(stroked);
784 op->fAllFill = !stroked;
1243 string.appendf("Stroked: %d\n", fStroked);
1720 // whether the rrect is only stroked or stroked and filled.
1961 // Effectively this is an additional stroked rrect, with its
2074 // whether the rrect is only stroked or stroked and filled.
2086 bool stroked = false;
2115 stroked = (innerXRadius >= 0 && innerYRadius >= 0);
2124 op->fStroked = stroked;
2138 string.appendf("Stroked: %d\n", fStroked);
2181 // drop out the middle quad if we're stroked