Home
last modified time | relevance | path

Searched defs:Make (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/external/skqp/experimental/sksg/geometry/
DSkSGRect.h26 static sk_sp<Rect> Make() { return sk_sp<Rect>(new Rect(SkRect::MakeEmpty())); } in Make() function
27 static sk_sp<Rect> Make(const SkRect& r) { return sk_sp<Rect>(new Rect(r)); } in Make() function
54 static sk_sp<RRect> Make() { return sk_sp<RRect>(new RRect(SkRRect())); } in Make() function
55 static sk_sp<RRect> Make(const SkRRect& rr) { return sk_sp<RRect>(new RRect(rr)); } in Make() function
DSkSGPath.h25 static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); } in Make() function
26 static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); } in Make() function
DSkSGGeometryTransform.h25 static sk_sp<GeometryTransform> Make(sk_sp<GeometryNode> child, sk_sp<Matrix> matrix) { in Make() function
31 static sk_sp<GeometryTransform> Make(sk_sp<GeometryNode> child, const SkMatrix& m) { in Make() function
/external/skia/experimental/sksg/geometry/
DSkSGRect.h26 static sk_sp<Rect> Make() { return sk_sp<Rect>(new Rect(SkRect::MakeEmpty())); } in Make() function
27 static sk_sp<Rect> Make(const SkRect& r) { return sk_sp<Rect>(new Rect(r)); } in Make() function
54 static sk_sp<RRect> Make() { return sk_sp<RRect>(new RRect(SkRRect())); } in Make() function
55 static sk_sp<RRect> Make(const SkRRect& rr) { return sk_sp<RRect>(new RRect(rr)); } in Make() function
DSkSGPath.h25 static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); } in Make() function
26 static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); } in Make() function
DSkSGGeometryTransform.h25 static sk_sp<GeometryTransform> Make(sk_sp<GeometryNode> child, sk_sp<Matrix> matrix) { in Make() function
31 static sk_sp<GeometryTransform> Make(sk_sp<GeometryNode> child, const SkMatrix& m) { in Make() function
/external/skqp/src/gpu/effects/
DGrSimpleTextureEffect.h21 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
30 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
38 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
DGrBicubicEffect.h34 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
44 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
DGrDistanceFieldGeoProc.h60 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make() function
67 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make() function
128 static sk_sp<GrGeometryProcessor> Make(const SkMatrix& matrix, in Make() function
178 static DistanceAdjust Make(SkScalar r, SkScalar g, SkScalar b) { in Make() function
193 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make() function
/external/skia/src/gpu/effects/
DGrSimpleTextureEffect.h21 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
30 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
38 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
DGrBicubicEffect.h34 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
44 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, in Make() function
/external/skia/src/svg/
DSkSVGCanvas.cpp13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) { in Make() function in SkSVGCanvas
21 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkWStream* writer) { in Make() function in SkSVGCanvas
/external/skqp/src/svg/
DSkSVGCanvas.cpp13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) { in Make() function in SkSVGCanvas
21 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkWStream* writer) { in Make() function in SkSVGCanvas
/external/skia/include/effects/
DSk2DPathEffect.h58 static sk_sp<SkPathEffect> Make(SkScalar width, const SkMatrix& matrix) { in Make() function
87 static sk_sp<SkPathEffect> Make(const SkMatrix& matrix, const SkPath& path) { in Make() function
/external/skqp/include/effects/
DSk2DPathEffect.h58 static sk_sp<SkPathEffect> Make(SkScalar width, const SkMatrix& matrix) { in Make() function
87 static sk_sp<SkPathEffect> Make(const SkMatrix& matrix, const SkPath& path) { in Make() function
/external/skqp/experimental/sksg/effects/
DSkSGTransform.h52 static sk_sp<Transform> Make(sk_sp<RenderNode> child, sk_sp<Matrix> matrix) { in Make() function
58 static sk_sp<Transform> Make(sk_sp<RenderNode> child, const SkMatrix& m) { in Make() function
/external/skia/experimental/sksg/effects/
DSkSGTransform.h52 static sk_sp<Transform> Make(sk_sp<RenderNode> child, sk_sp<Matrix> matrix) { in Make() function
58 static sk_sp<Transform> Make(sk_sp<RenderNode> child, const SkMatrix& m) { in Make() function
/external/skia/experimental/sksg/paint/
DSkSGGradient.h57 static sk_sp<LinearGradient> Make() { in Make() function
79 static sk_sp<RadialGradient> Make() { in Make() function
/external/skqp/experimental/sksg/paint/
DSkSGGradient.h57 static sk_sp<LinearGradient> Make() { in Make() function
79 static sk_sp<RadialGradient> Make() { in Make() function
DSkSGColor.h22 static sk_sp<Color> Make(SkColor c) { return sk_sp<Color>(new Color(c)); } in Make() function
/external/skqp/experimental/svg/model/
DSkSVGClipPath.h17 static sk_sp<SkSVGClipPath> Make() { in Make() function
DSkSVGDefs.h16 static sk_sp<SkSVGDefs> Make() { return sk_sp<SkSVGDefs>(new SkSVGDefs()); } in Make() function
/external/skia/experimental/svg/model/
DSkSVGClipPath.h17 static sk_sp<SkSVGClipPath> Make() { in Make() function
DSkSVGDefs.h16 static sk_sp<SkSVGDefs> Make() { return sk_sp<SkSVGDefs>(new SkSVGDefs()); } in Make() function
/external/skqp/src/atlastext/
DSkAtlasTextContext.cpp12 sk_sp<SkAtlasTextContext> SkAtlasTextContext::Make(sk_sp<SkAtlasTextRenderer> renderer) { in Make() function in SkAtlasTextContext

12345678910>>...18