Home
last modified time | relevance | path

Searched defs:GrShape (Results 1 – 23 of 23) sorted by relevance

/external/skqp/src/gpu/
DGrShape.h42 GrShape() { this->initType(Type::kEmpty); } in GrShape() function
44 explicit GrShape(const SkPath& path) : GrShape(path, GrStyle::SimpleFill()) {} in GrShape() function
46 explicit GrShape(const SkRRect& rrect) : GrShape(rrect, GrStyle::SimpleFill()) {} in GrShape() function
48 explicit GrShape(const SkRect& rect) : GrShape(rect, GrStyle::SimpleFill()) {} in GrShape() function
50 GrShape(const SkPath& path, const GrStyle& style) : fStyle(style) { in GrShape() function
55 GrShape(const SkRRect& rrect, const GrStyle& style) : fStyle(style) { in GrShape() function
64 GrShape(const SkRRect& rrect, SkPath::Direction dir, unsigned start, bool inverted, in GrShape() function
84 GrShape(const SkRect& rect, const GrStyle& style) : fStyle(style) { in GrShape() function
93 GrShape(const SkPath& path, const SkPaint& paint) : fStyle(paint) { in GrShape() function
98 GrShape(const SkRRect& rrect, const SkPaint& paint) : fStyle(paint) { in GrShape() function
[all …]
DGrSWMaskHelper.h19 class GrShape; variable
DGrSoftwarePathRenderer.h63 StencilSupport onGetStencilSupport(const GrShape&) const override { in onGetStencilSupport()
DGrPath.h17 class GrShape; variable
DGrBlurUtils.h18 class GrShape; variable
DGrPathRenderer.h22 class GrShape; variable
182 virtual StencilSupport onGetStencilSupport(const GrShape&) const { in onGetStencilSupport()
DGrShape.cpp388 GrShape::GrShape(const GrShape& that) : fStyle(that.fStyle) { in GrShape() function in GrShape
417 GrShape::GrShape(const GrShape& parent, GrStyle::Apply apply, SkScalar scale) { in GrShape() function in GrShape
DGrPathRendering_none.cpp60 void GrPath::ComputeKey(const GrShape&, GrUniqueKey*, bool*) {} in ComputeKey()
DGrRenderTargetContext.h34 class GrShape; variable
/external/skia/src/gpu/geometry/
DGrShape.h64 GrShape() {} in GrShape() function
65 explicit GrShape(const SkPoint& point) { this->setPoint(point); } in GrShape() function
66 explicit GrShape(const SkRect& rect) { this->setRect(rect); } in GrShape() function
67 explicit GrShape(const SkRRect& rrect) { this->setRRect(rrect); } in GrShape() function
68 explicit GrShape(const SkPath& path) { this->setPath(path); } in GrShape() function
69 explicit GrShape(const GrArc& arc) { this->setArc(arc); } in GrShape() function
70 explicit GrShape(const GrLineSegment& line){ this->setLine(line); } in GrShape() function
72 GrShape(const GrShape& shape) { *this = shape; } in GrShape() function
/external/skqp/src/gpu/ops/
DGrTessellatingPathRenderer.h24 StencilSupport onGetStencilSupport(const GrShape&) const override { in onGetStencilSupport()
DGrDashLinePathRenderer.h19 StencilSupport onGetStencilSupport(const GrShape&) const override { in onGetStencilSupport()
DGrStencilAndCoverPathRenderer.h28 StencilSupport onGetStencilSupport(const GrShape&) const override { in onGetStencilSupport()
DGrSmallPathRenderer.h67 StencilSupport onGetStencilSupport(const GrShape&) const override { in onGetStencilSupport()
/external/skia/src/gpu/
DGrSWMaskHelper.h20 class GrShape; variable
DGrStencilMaskHelper.h16 class GrShape; variable
/external/skqp/src/gpu/text/
DGrTextTarget.h17 class GrShape; variable
/external/skqp/src/gpu/ccpr/
DGrCoverageCountingPathRenderer.h88 StencilSupport onGetStencilSupport(const GrShape&) const override { in onGetStencilSupport()
DGrCCPerFlushResources.h20 class GrShape; variable
DGrCCPathCache.h19 class GrShape; variable
/external/skqp/src/core/
DSkMaskFilterBase.h27 class GrShape; variable
/external/skqp/src/atlastext/
DSkAtlasTextTarget.cpp102 const GrShape&) override { in drawShape()
/external/skqp/tests/
DGrShapeTest.cpp2127 DEF_TEST(GrShape, reporter) { in DEF_TEST() argument