HomeSort by relevance Sort by last modified time
    Searched refs:strokePaint (Results 1 - 25 of 26) sorted by null

1 2

  /external/skia/experimental/go-demo/
main.go 45 strokePaint := skia.NewPaint()
46 strokePaint.SetColor(0xFFFF0000)
47 strokePaint.SetAntiAlias(true)
48 strokePaint.SetStroke(true)
49 strokePaint.SetStrokeWidth(5.0)
56 canvas.DrawPath(path, strokePaint)
  /external/skia/experimental/svg/model/
SkSVGShape.cpp 22 if (const SkPaint* strokePaint = ctx.strokePaint()) {
23 this->onDraw(ctx.canvas(), ctx.lengthContext(), *strokePaint, fillType);
SkSVGRenderContext.h 81 const SkPaint* strokePaint() const;
SkSVGRenderContext.cpp 295 const bool hasStroke = SkToBool(this->strokePaint());
352 const SkPaint* SkSVGRenderContext::strokePaint() const {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathDestructionActivity.java 49 Paint strokePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
55 strokePaint.setStyle(Paint.Style.STROKE);
89 strokePaint.setColor(getRandomColor());
90 canvas.drawPath(path, strokePaint);
  /external/skia/gm/
strokes.cpp 116 SkPaint fillPaint, strokePaint, dashPaint;
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.setStrokeWidth(20)
    [all...]
emptypath.cpp 184 SkPaint strokePaint;
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);
offsetimagefilter.cpp 84 SkPaint strokePaint;
85 strokePaint.setStyle(SkPaint::kStroke_Style);
86 strokePaint.setStrokeWidth(2);
87 strokePaint.setColor(SK_ColorRED);
88 canvas->drawRect(clipRect, strokePaint);
reveal.cpp 359 SkPaint strokePaint;
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...]
imagefilterscropexpand.cpp 183 SkPaint strokePaint;
184 strokePaint.setColor(0xFFFF0000);
185 strokePaint.setStyle(SkPaint::kStroke_Style);
186 canvas->drawRect(rect, strokePaint);
shadertext2.cpp 95 SkPaint strokePaint(fillPaint);
96 strokePaint.setStyle(SkPaint::kStroke_Style);
97 strokePaint.setStrokeWidth(kPointSize * 0.1f);
129 SkPaint& paint = s ? strokePaint : fillPaint;
  /external/skia/src/gpu/ops/
GrNonAAStrokeRectOp.cpp 218 SkPaint strokePaint;
219 strokePaint.setStrokeWidth(strokeWidth);
220 strokePaint.setStyle(SkPaint::kStroke_Style);
221 strokePaint.setStrokeJoin(SkPaint::kMiter_Join);
222 SkStrokeRec strokeRec(strokePaint);
  /frameworks/base/libs/hwui/tests/unit/
BakedOpDispatcherTests.cpp 84 SkPaint strokePaint;
85 strokePaint.setStyle(SkPaint::kStroke_Style);
86 strokePaint.setStrokeWidth(4);
89 strokePaint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0));
109 ArcOp arcOp(Rect(10, 15, 20, 25), Matrix4::identity(), nullptr, &strokePaint, 0, 270, true);
112 OvalOp ovalOp(Rect(10, 15, 20, 25), Matrix4::identity(), nullptr, &strokePaint);
  /external/skia/samplecode/
SampleShadowColor.cpp 147 SkPaint strokePaint;
149 strokePaint.setColor(paint.getColor());
150 strokePaint.setStyle(SkPaint::kStroke_Style);
152 canvas->drawPath(path, strokePaint);
SampleShadowReference.cpp 105 SkPaint strokePaint;
107 strokePaint.setColor(paint.getColor());
108 strokePaint.setStyle(SkPaint::kStroke_Style);
110 canvas->drawPath(path, strokePaint);
SampleShadowUtils.cpp 138 SkPaint strokePaint;
140 strokePaint.setColor(paint.getColor());
141 strokePaint.setStyle(SkPaint::kStroke_Style);
143 canvas->drawPath(path, strokePaint);
SampleAndroidShadows.cpp 155 SkPaint strokePaint;
157 strokePaint.setColor(paint.getColor());
158 strokePaint.setStyle(SkPaint::kStroke_Style);
160 canvas->drawPath(path, strokePaint);
SampleAAGeometry.cpp 848 SkPaint strokePaint;
849 strokePaint.setAntiAlias(true);
850 strokePaint.setStyle(SkPaint::kStroke_Style);
851 fPointPaint = strokePaint;
853 fSkeletonPaint = strokePaint;
857 fActivePaint = strokePaint;
    [all...]
  /external/skia/tests/
GpuDrawPathTest.cpp 95 SkPaint strokePaint;
96 strokePaint.setStyle(SkPaint::kStroke_Style);
97 strokePaint.setStrokeWidth(10.f);
101 GrStyle(strokePaint)
GrShapeTest.cpp     [all...]
ImageFilterTest.cpp     [all...]
  /frameworks/layoutlib/bridge/src/android/graphics/drawable/
VectorDrawable_Delegate.java     [all...]
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCompat.java     [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java     [all...]
  /prebuilts/sdk/current/support/graphics/drawable/
android-support-vectordrawable.jar 

Completed in 3073 milliseconds

1 2