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

1 2 3

  /external/skia/src/gpu/ops/
GrNonAAStrokeRectOp.h 16 class SkStrokeRec;
24 const SkStrokeRec&,
GrAAStrokeRectOp.h 17 class SkStrokeRec;
29 const SkStrokeRec& stroke);
GrShadowRRectOp.h 18 class SkStrokeRec;
23 const SkScalar blurRadius, const SkStrokeRec& stroke,
GrOvalOpFactory.h 20 class SkStrokeRec;
30 const SkStrokeRec& stroke,
36 const SkStrokeRec& stroke,
GrRectOpFactory.h 23 class SkStrokeRec;
66 const SkStrokeRec& strokeRec,
74 const SkStrokeRec& stroke) {
GrAALinearizingConvexPathRenderer.cpp 51 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
53 if (stroke.getStyle() == SkStrokeRec::kStroke_Style ||
54 stroke.getStyle() == SkStrokeRec::kStrokeAndFill_Style) {
59 if (strokeWidth < 1.0f && stroke.getStyle() == SkStrokeRec::kStroke_Style) {
66 return stroke.getStyle() == SkStrokeRec::kFill_Style;
127 SkStrokeRec::Style style,
154 SkStrokeRec::Style style,
312 SkStrokeRec::Style fStyle;
334 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
360 SkStrokeRec::Style styles[3] = { SkStrokeRec::kFill_Style
    [all...]
  /external/skia/src/core/
SkStrokeRec.cpp 8 #include "SkStrokeRec.h"
14 SkStrokeRec::SkStrokeRec(InitStyle s) {
23 SkStrokeRec::SkStrokeRec(const SkPaint& paint, SkScalar resScale) {
27 SkStrokeRec::SkStrokeRec(const SkPaint& paint, SkPaint::Style styleOverride, SkScalar resScale) {
31 void SkStrokeRec::init(const SkPaint& paint, SkPaint::Style style, SkScalar resScale) {
67 SkStrokeRec::Style SkStrokeRec::getStyle() const
    [all...]
  /external/skia/src/gpu/
GrStyle.h 13 #include "SkStrokeRec.h"
30 static const GrStyle kFill(SkStrokeRec::kFill_InitStyle);
39 static const GrStyle kHairline(SkStrokeRec::kHairline_InitStyle);
71 * for just dash application followed by the key for the remaining SkStrokeRec is the same as
72 * the key for applying dashing and SkStrokeRec all at once.
76 GrStyle() : GrStyle(SkStrokeRec::kFill_InitStyle) {}
78 explicit GrStyle(SkStrokeRec::InitStyle initStyle) : fStrokeRec(initStyle) {}
80 GrStyle(const SkStrokeRec& strokeRec, sk_sp<SkPathEffect> pe) : fStrokeRec(strokeRec) {
84 GrStyle(const GrStyle& that) : fStrokeRec(SkStrokeRec::kFill_InitStyle) { *this = that; }
102 void resetToInitStyle(SkStrokeRec::InitStyle fillOrHairline)
    [all...]
GrStyle.cpp 44 // from SkStrokeRec output by the the path effect (and no additional path effect).
73 GR_STATIC_ASSERT(SkStrokeRec::kStyleCount <= (1 << kStyleBits));
115 SkStrokeRec::Style recStyle = fStrokeRec.getStyle();
116 if (recStyle != SkStrokeRec::kFill_Style && recStyle != SkStrokeRec::kStrokeAndFill_Style) {
129 bool GrStyle::applyPathEffect(SkPath* dst, SkStrokeRec* strokeRec, const SkPath& src) const {
158 bool GrStyle::applyPathEffectToPath(SkPath *dst, SkStrokeRec *remainingStroke,
161 SkStrokeRec strokeRec = fStrokeRec;
170 bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src,
174 SkStrokeRec strokeRec = fStrokeRec
    [all...]
GrTestUtils.cpp 229 static void randomize_stroke_rec(SkStrokeRec* rec, SkRandom* random) {
240 SkStrokeRec TestStrokeRec(SkRandom* random) {
241 SkStrokeRec::InitStyle style =
242 SkStrokeRec::InitStyle(random->nextULessThan(SkStrokeRec::kFill_InitStyle + 1));
243 SkStrokeRec rec(style);
249 SkStrokeRec::InitStyle initStyle =
250 SkStrokeRec::InitStyle(random->nextULessThan(SkStrokeRec::kFill_InitStyle + 1));
251 SkStrokeRec stroke(initStyle)
    [all...]
  /external/skia/include/core/
SkStrokeRec.h 16 class SkStrokeRec {
22 SkStrokeRec(InitStyle style);
23 SkStrokeRec(const SkPaint&, SkPaint::Style, SkScalar resScale = 1);
24 explicit SkStrokeRec(const SkPaint&, SkScalar resScale = 1);
110 * SkStrokeRec rec(paint, style);
122 bool hasEqualEffect(const SkStrokeRec& other) const {
SkPathEffect.h 17 class SkStrokeRec;
62 SkStrokeRec*, const SkRect* cullR) const = 0;
116 const SkStrokeRec&, const SkMatrix&,
SkMaskFilter.h 17 #include "SkStrokeRec.h"
123 const SkStrokeRec& strokeRec,
134 const SkStrokeRec& strokeRec,
234 SkStrokeRec::InitStyle) const;
  /external/skia/include/effects/
SkDashPathEffect.h 42 SkStrokeRec*, const SkRect*) const override;
45 const SkStrokeRec&, const SkMatrix&,
SkArcToPathEffect.h 25 bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*) const override;
SkCornerPathEffect.h 28 SkStrokeRec*, const SkRect*) const override;
SkDiscretePathEffect.h 35 SkStrokeRec*, const SkRect*) const override;
Sk1DPathEffect.h 20 SkStrokeRec*, const SkRect*) const override;
62 SkStrokeRec*, const SkRect*) const override;
Sk2DPathEffect.h 17 bool filterPath(SkPath*, const SkPath&, SkStrokeRec*, const SkRect*) const override;
63 SkStrokeRec*, const SkRect*) const override;
  /external/skia/src/utils/
SkDashPathPriv.h 26 bool FilterDashPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*,
43 bool InternalFilter(SkPath* dst, const SkPath& src, SkStrokeRec* rec,
  /external/skia/tests/
StrokeTest.cpp 12 #include "SkStrokeRec.h"
90 SkStrokeRec s1(SkStrokeRec::kFill_InitStyle);
91 SkStrokeRec s2(SkStrokeRec::kFill_InitStyle);
117 SkStrokeRec s1(SkStrokeRec::kFill_InitStyle);
118 SkStrokeRec s2(SkStrokeRec::kFill_InitStyle);
134 SkStrokeRec s1(SkStrokeRec::kFill_InitStyle)
    [all...]
DFPathRendererTest.cpp 37 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
  /external/skia/src/gpu/gl/
GrGLPath.h 31 static void InitPathObjectStroke(GrGLGpu*, GrGLuint pathID, const SkStrokeRec&);
GrGLPathRange.cpp 36 const SkStrokeRec& stroke = fStyle.strokeRec();
49 stroke.getStyle() == SkStrokeRec::kStrokeAndFill_Style;
73 SkStrokeRec::InitStyle fill;
84 SkASSERT(SkStrokeRec::kFill_InitStyle == fill);
  /external/skia/src/effects/shadows/
SkAmbientShadowMaskFilter.cpp 20 #include "SkStrokeRec.h"
42 const SkStrokeRec& strokeRec,
49 const SkStrokeRec& strokeRec,
147 const SkStrokeRec& strokeRec,
161 if (strokeRec.getStyle() != SkStrokeRec::kFill_Style) {
187 const SkStrokeRec& strokeRec,
195 if (SkStrokeRec::kFill_Style != strokeRec.getStyle()) {
244 SkStrokeRec ambientStrokeRec(SkStrokeRec::kHairline_InitStyle);

Completed in 896 milliseconds

1 2 3