Searched refs:BlurDrawLooper (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/libs/hwui/hwui/ |
D | BlurDrawLooper.cpp | 24 BlurDrawLooper::BlurDrawLooper(SkColor4f color, float blurSigma, SkPoint offset) in BlurDrawLooper() function in android::BlurDrawLooper 27 BlurDrawLooper::~BlurDrawLooper() = default; 29 SkPoint BlurDrawLooper::apply(Paint* paint) const { in apply() 37 sk_sp<BlurDrawLooper> BlurDrawLooper::Make(SkColor4f color, SkColorSpace* cs, float blurSigma, in Make() 44 return sk_sp<BlurDrawLooper>(new BlurDrawLooper(color, blurSigma, offset)); in Make()
|
D | BlurDrawLooper.h | 27 class BlurDrawLooper : public SkRefCnt { 29 static sk_sp<BlurDrawLooper> Make(SkColor4f, SkColorSpace*, float blurSigma, SkPoint offset); 31 ~BlurDrawLooper() override; 48 BlurDrawLooper(SkColor4f, float, SkPoint);
|
D | Paint.h | 36 class BlurDrawLooper; variable 65 BlurDrawLooper* getLooper() const { return mLooper.get(); } in getLooper() 66 void setLooper(sk_sp<BlurDrawLooper> looper); 177 sk_sp<BlurDrawLooper> mLooper;
|
D | PaintImpl.cpp | 100 void Paint::setLooper(sk_sp<BlurDrawLooper> looper) { in setLooper()
|
/frameworks/base/libs/hwui/tests/unit/ |
D | SkiaCanvasTests.cpp | 49 paint.setLooper(BlurDrawLooper::Make({0, 0, 0, 240.0f / 255}, nullptr, 6.0f, {0, 10})); in TEST()
|
/frameworks/base/libs/hwui/ |
D | SkiaCanvas.h | 191 BlurDrawLooper* looper = paint ? paint->getLooper() : nullptr;
|
D | Android.bp | 562 "hwui/BlurDrawLooper.cpp",
|
/frameworks/base/libs/hwui/jni/ |
D | Paint.cpp | 1104 paint->setLooper(BlurDrawLooper::Make(color, cs.get(), sigma, {dx, dy})); in setShadowLayer()
|