HomeSort by relevance Sort by last modified time
    Searched refs:Make (Results 251 - 275 of 2839) sorted by null

<<11121314151617181920>>

  /external/skqp/gm/
localmatriximagefilter.cpp 53 IFCCast([]{ return SkBlurImageFilter::Make(8, 8, nullptr); }),
54 IFCCast([]{ return SkDilateImageFilter::Make(8, 8, nullptr); }),
55 IFCCast([]{ return SkErodeImageFilter::Make(8, 8, nullptr); }),
56 IFCCast([]{ return SkOffsetImageFilter::Make(8, 8, nullptr); }),
xfermodeimagefilter.cpp 34 return SkISize::Make(WIDTH, HEIGHT);
85 sk_sp<SkImageFilter> background(SkImageSource::Make(fCheckerboard));
87 paint.setImageFilter(SkXfermodeImageFilter::Make(gModes[i], background));
96 paint.setImageFilter(SkArithmeticImageFilter::Make(0, 1, 1, 0, true, background,
105 paint.setImageFilter(SkXfermodeImageFilter::Make(SkBlendMode::kSrcOver, background));
116 sk_sp<SkImageFilter> foreground(SkImageSource::Make(std::move(bitmapImage)));
117 sk_sp<SkImageFilter> offsetForeground(SkOffsetImageFilter::Make(SkIntToScalar(4),
120 sk_sp<SkImageFilter> offsetBackground(SkOffsetImageFilter::Make(SkIntToScalar(4),
123 paint.setImageFilter(SkXfermodeImageFilter::Make(SkBlendMode::kSrcOver,
134 paint.setImageFilter(SkXfermodeImageFilter::Make(SkBlendMode::kDarken
    [all...]
blurimagevmask.cpp 42 SkBlurMaskFilter::Make(kNormal_SkBlurStyle, sigma,
49 imageBlurPaint.setImageFilter(SkBlurImageFilter::Make(sigma, sigma, nullptr));
64 paint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, 4));
testgradient.cpp 24 return SkISize::Make(800, 800);
41 SkPoint::Make(0.0f, 0.0f),
42 SkPoint::Make(256.0f, 256.0f)
tosrgb_colorfilter.cpp 47 paint.setColorFilter(SkToSRGBColorFilter::Make(srgb));
51 paint.setColorFilter(SkToSRGBColorFilter::Make(rec2020));
55 paint.setColorFilter(SkToSRGBColorFilter::Make(narrow));
  /external/skqp/include/atlastext/
SkAtlasTextContext.h 24 static sk_sp<SkAtlasTextContext> Make(sk_sp<SkAtlasTextRenderer>);
  /external/skqp/include/effects/
SkCornerPathEffect.h 23 static sk_sp<SkPathEffect> Make(SkScalar radius) {
SkToSRGBColorFilter.h 22 static sk_sp<SkColorFilter> Make(sk_sp<SkColorSpace> srcColorSpace);
SkBlurMaskFilter.h 46 static sk_sp<SkMaskFilter> Make(SkBlurStyle style, SkScalar sigma,
49 static sk_sp<SkMaskFilter> Make(SkBlurStyle style, SkScalar sigma,
51 return Make(style, sigma, SkRect::MakeEmpty(), flags);
72 // widthHeight - how large to make the mask (rrectToDraw will be centered in this coord sys)
  /external/skqp/src/gpu/
GrPaint.cpp 41 this->addColorFragmentProcessor(GrSimpleTextureEffect::Make(std::move(proxy), matrix));
46 this->addColorFragmentProcessor(GrSimpleTextureEffect::Make(std::move(proxy), matrix,
52 this->addCoverageFragmentProcessor(GrSimpleTextureEffect::Make(std::move(proxy), matrix));
58 this->addCoverageFragmentProcessor(GrSimpleTextureEffect::Make(std::move(proxy), matrix,
  /external/skqp/src/gpu/ops/
GrSemaphoreOp.cpp 17 static std::unique_ptr<GrSignalSemaphoreOp> Make(sk_sp<GrSemaphore> semaphore,
45 static std::unique_ptr<GrWaitSemaphoreOp> Make(sk_sp<GrSemaphore> semaphore,
69 return GrSignalSemaphoreOp::Make(std::move(semaphore), proxy, forceFlush);
74 return GrWaitSemaphoreOp::Make(std::move(semaphore), proxy);
  /external/skqp/src/pdf/
SkPDFResourceDict.h 43 static sk_sp<SkPDFDict> Make(
  /external/skqp/tools/viewer/
Slide.h 24 return SkISize::Make(0, 0);
  /system/bt/packet/tests/avrcp/
avrcp_reject_packet_test.cc 34 auto test_packet = TestAvrcpPacket::Make();
general_reject_packet_test.cc 34 auto test_packet = TestGeneralRejectPacket::Make();
  /external/skia/bench/
BlurOccludedRRectBench.cpp 25 return SkIPoint::Make(1024, 2048);
51 firstBlur.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle,
63 secondBlur.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle,
MatrixConvolutionBench.cpp 29 SkISize kernelSize = SkISize::Make(3, 3);
36 SkIPoint kernelOffset = SkIPoint::Make(1, 1);
37 fFilter = SkMatrixConvolutionImageFilter::Make(kernelSize, kernel, gain, bias,
  /external/skia/gm/
blurimagevmask.cpp 42 SkBlurMaskFilter::Make(kNormal_SkBlurStyle, sigma,
49 imageBlurPaint.setImageFilter(SkBlurImageFilter::Make(sigma, sigma, nullptr));
64 paint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, 4));
testgradient.cpp 24 return SkISize::Make(800, 800);
41 SkPoint::Make(0.0f, 0.0f),
42 SkPoint::Make(256.0f, 256.0f)
tosrgb_colorfilter.cpp 47 paint.setColorFilter(SkToSRGBColorFilter::Make(srgb));
51 paint.setColorFilter(SkToSRGBColorFilter::Make(rec2020));
55 paint.setColorFilter(SkToSRGBColorFilter::Make(narrow));
  /external/skia/include/effects/
SkBlurMaskFilter.h 46 static sk_sp<SkMaskFilter> Make(SkBlurStyle style, SkScalar sigma,
49 static sk_sp<SkMaskFilter> Make(SkBlurStyle style, SkScalar sigma,
51 return Make(style, sigma, SkRect::MakeEmpty(), flags);
72 // widthHeight - how large to make the mask (rrectToDraw will be centered in this coord sys)
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.h 38 * have to modify the effect/shaderbuilder interface to make it possible (e.g. give access
41 static std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType edgeType, int n,
53 static std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType, const SkPath&);
58 static std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType, const SkRect&);
  /external/skqp/bench/
BlurOccludedRRectBench.cpp 25 return SkIPoint::Make(1024, 2048);
51 firstBlur.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle,
63 secondBlur.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle,
MatrixConvolutionBench.cpp 29 SkISize kernelSize = SkISize::Make(3, 3);
36 SkIPoint kernelOffset = SkIPoint::Make(1, 1);
37 fFilter = SkMatrixConvolutionImageFilter::Make(kernelSize, kernel, gain, bias,
  /external/skqp/src/gpu/effects/
GrConvexPolyEffect.h 38 * have to modify the effect/shaderbuilder interface to make it possible (e.g. give access
41 static std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType edgeType, int n,
53 static std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType, const SkPath&);
58 static std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType, const SkRect&);

Completed in 755 milliseconds

<<11121314151617181920>>