Searched defs:strokePaint (Results 1 - 25 of 34) sorted by relevance

12

/external/skia/gm/
H A Dimagefilterscropexpand.cpp183 SkPaint strokePaint; local
184 strokePaint.setColor(0xFFFF0000);
185 strokePaint.setStyle(SkPaint::kStroke_Style);
186 canvas->drawRect(rect, strokePaint);
H A Doffsetimagefilter.cpp84 SkPaint strokePaint; local
85 strokePaint.setStyle(SkPaint::kStroke_Style);
86 strokePaint.setStrokeWidth(2);
87 strokePaint.setColor(SK_ColorRED);
88 canvas->drawRect(clipRect, strokePaint);
H A Demptypath.cpp184 SkPaint strokePaint; variable
185 strokePaint.setStyle(SkPaint::kStroke_Style);
186 strokePaint.setStrokeWidth(21);
187 strokePaint.setStrokeCap(SkPaint::kSquare_Cap);
191 strokePaint.setStyle(SkPaint::kStroke_Style);
198 canvas->drawPath(path, strokePaint);
H A Dshadermaskfilter.cpp113 SkPaint strokePaint; local
114 strokePaint.setStyle(SkPaint::kStroke_Style);
155 canvas->drawRect(r2, strokePaint);
H A Dreveal.cpp359 SkPaint strokePaint; variable
360 strokePaint.setStyle(SkPaint::kStroke_Style);
361 strokePaint.setStrokeWidth(0.0f);
422 strokePaint.setColor(SK_ColorBLUE);
427 canvas->drawRect(cover, strokePaint);
434 canvas->drawRRect(rrect, strokePaint);
444 canvas->drawDRRect(outer, inner, strokePaint);
457 canvas->drawPath(path, strokePaint);
464 strokePaint.setColor(SK_ColorRED);
465 canvas->drawPath(drawObj->asPath(0.0f), strokePaint);
[all...]
H A Dstrokes.cpp116 SkPaint fillPaint, strokePaint, dashPaint; variable
118 strokePaint = fillPaint;
119 strokePaint.setStyle(SkPaint::kStroke_Style);
122 strokePaint.setAlpha(255);
123 strokePaint.setStrokeWidth(i ? 8.f : 10.f);
124 strokePaint.setStrokeCap(i ? SkPaint::kSquare_Cap : SkPaint::kRound_Cap);
127 canvas->drawPath(fMoveHfPath, strokePaint);
129 canvas->drawPath(fMoveZfPath, strokePaint);
130 dashPaint = strokePaint;
139 strokePaint
[all...]
/external/skqp/gm/
H A Dimagefilterscropexpand.cpp183 SkPaint strokePaint; local
184 strokePaint.setColor(0xFFFF0000);
185 strokePaint.setStyle(SkPaint::kStroke_Style);
186 canvas->drawRect(rect, strokePaint);
H A Doffsetimagefilter.cpp84 SkPaint strokePaint; local
85 strokePaint.setStyle(SkPaint::kStroke_Style);
86 strokePaint.setStrokeWidth(2);
87 strokePaint.setColor(SK_ColorRED);
88 canvas->drawRect(clipRect, strokePaint);
H A Demptypath.cpp184 SkPaint strokePaint; variable
185 strokePaint.setStyle(SkPaint::kStroke_Style);
186 strokePaint.setStrokeWidth(21);
187 strokePaint.setStrokeCap(SkPaint::kSquare_Cap);
191 strokePaint.setStyle(SkPaint::kStroke_Style);
198 canvas->drawPath(path, strokePaint);
H A Dreveal.cpp359 SkPaint strokePaint; variable
360 strokePaint.setStyle(SkPaint::kStroke_Style);
361 strokePaint.setStrokeWidth(0.0f);
422 strokePaint.setColor(SK_ColorBLUE);
427 canvas->drawRect(cover, strokePaint);
434 canvas->drawRRect(rrect, strokePaint);
444 canvas->drawDRRect(outer, inner, strokePaint);
457 canvas->drawPath(path, strokePaint);
464 strokePaint.setColor(SK_ColorRED);
465 canvas->drawPath(drawObj->asPath(0.0f), strokePaint);
[all...]
H A Dstrokes.cpp116 SkPaint fillPaint, strokePaint, dashPaint; variable
118 strokePaint = fillPaint;
119 strokePaint.setStyle(SkPaint::kStroke_Style);
122 strokePaint.setAlpha(255);
123 strokePaint.setStrokeWidth(i ? 8.f : 10.f);
124 strokePaint.setStrokeCap(i ? SkPaint::kSquare_Cap : SkPaint::kRound_Cap);
127 canvas->drawPath(fMoveHfPath, strokePaint);
129 canvas->drawPath(fMoveZfPath, strokePaint);
130 dashPaint = strokePaint;
139 strokePaint
[all...]
/external/skia/samplecode/
H A DSampleShadowReference.cpp107 SkPaint strokePaint; local
109 strokePaint.setColor(paint.getColor());
110 strokePaint.setStyle(SkPaint::kStroke_Style);
112 canvas->drawPath(path, strokePaint);
H A DSampleAndroidShadows.cpp166 SkPaint strokePaint; local
168 strokePaint.setColor(paint.getColor());
169 strokePaint.setStyle(SkPaint::kStroke_Style);
171 canvas->drawPath(path, strokePaint);
H A DSampleShadowColor.cpp158 SkPaint strokePaint; local
160 strokePaint.setColor(paint.getColor());
161 strokePaint.setStyle(SkPaint::kStroke_Style);
163 canvas->drawPath(path, strokePaint);
H A DSampleShadowUtils.cpp158 SkPaint strokePaint; local
160 strokePaint.setColor(paint.getColor());
161 strokePaint.setStyle(SkPaint::kStroke_Style);
163 canvas->drawPath(path, strokePaint);
/external/skia/src/gpu/ops/
H A DGrNonAAStrokeRectOp.cpp229 SkPaint strokePaint; local
230 strokePaint.setStrokeWidth(strokeWidth);
231 strokePaint.setStyle(SkPaint::kStroke_Style);
232 strokePaint.setStrokeJoin(SkPaint::kMiter_Join);
233 SkStrokeRec strokeRec(strokePaint);
/external/skia/tests/
H A DGpuDrawPathTest.cpp95 SkPaint strokePaint; local
96 strokePaint.setStyle(SkPaint::kStroke_Style);
97 strokePaint.setStrokeWidth(10.f);
101 GrStyle(strokePaint)
/external/skqp/samplecode/
H A DSampleShadowColor.cpp146 SkPaint strokePaint; local
148 strokePaint.setColor(paint.getColor());
149 strokePaint.setStyle(SkPaint::kStroke_Style);
151 canvas->drawPath(path, strokePaint);
H A DSampleShadowReference.cpp104 SkPaint strokePaint; local
106 strokePaint.setColor(paint.getColor());
107 strokePaint.setStyle(SkPaint::kStroke_Style);
109 canvas->drawPath(path, strokePaint);
H A DSampleShadowUtils.cpp138 SkPaint strokePaint; local
140 strokePaint.setColor(paint.getColor());
141 strokePaint.setStyle(SkPaint::kStroke_Style);
143 canvas->drawPath(path, strokePaint);
H A DSampleAndroidShadows.cpp165 SkPaint strokePaint; local
167 strokePaint.setColor(paint.getColor());
168 strokePaint.setStyle(SkPaint::kStroke_Style);
170 canvas->drawPath(path, strokePaint);
/external/skqp/src/gpu/ops/
H A DGrNonAAStrokeRectOp.cpp229 SkPaint strokePaint; local
230 strokePaint.setStrokeWidth(strokeWidth);
231 strokePaint.setStyle(SkPaint::kStroke_Style);
232 strokePaint.setStrokeJoin(SkPaint::kMiter_Join);
233 SkStrokeRec strokeRec(strokePaint);
/external/skqp/tests/
H A DGpuDrawPathTest.cpp95 SkPaint strokePaint; local
96 strokePaint.setStyle(SkPaint::kStroke_Style);
97 strokePaint.setStrokeWidth(10.f);
101 GrStyle(strokePaint)
/external/skia/experimental/svg/model/
H A DSkSVGRenderContext.cpp368 const bool hasStroke = SkToBool(this->strokePaint());
431 const SkPaint* SkSVGRenderContext::strokePaint() const { function in class:SkSVGRenderContext
/external/skqp/experimental/svg/model/
H A DSkSVGRenderContext.cpp368 const bool hasStroke = SkToBool(this->strokePaint());
431 const SkPaint* SkSVGRenderContext::strokePaint() const { function in class:SkSVGRenderContext

Completed in 1137 milliseconds

12