aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkImageFilter.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-04-15 08:07:27 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-15 08:07:27 -0700
commit938115c9f8a3453ad6f511c0a23dabb46ec5a71f (patch)
treee8ad18d97be355d469708e7159fe0ec02bea4d31 /src/core/SkImageFilter.cpp
parent534c270465a9824893d5c9d6c5bacef7726cc389 (diff)
Remove asFragmentProcessor gpu-specific ImageFilter code path
No image filter should be using this code path now. TBR=reed@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1892493002 Review URL: https://codereview.chromium.org/1892493002
Diffstat (limited to 'src/core/SkImageFilter.cpp')
-rw-r--r--src/core/SkImageFilter.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp
index af2b278e3d..43ea6ab6af 100644
--- a/src/core/SkImageFilter.cpp
+++ b/src/core/SkImageFilter.cpp
@@ -393,65 +393,6 @@ sk_sp<SkSpecialImage> SkImageFilter::onFilterImage(SkSpecialImage* src, const Co
return SkSpecialImage::internal_fromBM(src->internal_getProxy(), resultBM, &src->props());
}
-bool SkImageFilter::canFilterImageGPU() const {
- return this->asFragmentProcessor(nullptr, nullptr, SkMatrix::I(), SkIRect());
-}
-
-bool SkImageFilter::filterImageGPUDeprecated(Proxy* proxy, const SkBitmap& src, const Context& ctx,
- SkBitmap* result, SkIPoint* offset) const {
-#if SK_SUPPORT_GPU
- SkBitmap input = src;
- SkASSERT(fInputCount == 1);
- SkIPoint srcOffset = SkIPoint::Make(0, 0);
- if (!this->filterInputGPUDeprecated(0, proxy, src, ctx, &input, &srcOffset)) {
- return false;
- }
- GrTexture* srcTexture = input.getTexture();
- SkIRect bounds;
- if (!this->applyCropRectDeprecated(ctx, proxy, input, &srcOffset, &bounds, &input)) {
- return false;
- }
- GrContext* context = srcTexture->getContext();
-
- GrSurfaceDesc desc;
- desc.fFlags = kRenderTarget_GrSurfaceFlag;
- desc.fWidth = bounds.width();
- desc.fHeight = bounds.height();
- desc.fConfig = kRGBA_8888_GrPixelConfig;
-
- SkAutoTUnref<GrTexture> dst(context->textureProvider()->createApproxTexture(desc));
- if (!dst) {
- return false;
- }
-
- GrFragmentProcessor* fp;
- offset->fX = bounds.left();
- offset->fY = bounds.top();
- bounds.offset(-srcOffset);
- SkMatrix matrix(ctx.ctm());
- matrix.postTranslate(SkIntToScalar(-bounds.left()), SkIntToScalar(-bounds.top()));
- GrPaint paint;
- // SRGBTODO: Don't handle sRGB here, in anticipation of this code path being deleted.
- if (this->asFragmentProcessor(&fp, srcTexture, matrix, bounds)) {
- SkASSERT(fp);
- paint.addColorFragmentProcessor(fp)->unref();
- paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode);
-
- SkAutoTUnref<GrDrawContext> drawContext(context->drawContext(dst->asRenderTarget()));
- if (drawContext) {
- SkRect srcRect = SkRect::Make(bounds);
- SkRect dstRect = SkRect::MakeWH(srcRect.width(), srcRect.height());
- GrClip clip(dstRect);
- drawContext->fillRectToRect(clip, paint, SkMatrix::I(), dstRect, srcRect);
-
- GrWrapTextureInBitmap(dst, bounds.width(), bounds.height(), false, result);
- return true;
- }
- }
-#endif
- return false;
-}
-
#if SK_SUPPORT_GPU
sk_sp<SkSpecialImage> SkImageFilter::DrawWithFP(GrContext* context,
sk_sp<GrFragmentProcessor> fp,
@@ -620,11 +561,6 @@ SkImageFilter::Context SkImageFilter::mapContext(const Context& ctx) const {
return Context(ctx.ctm(), clipBounds, ctx.cache());
}
-bool SkImageFilter::asFragmentProcessor(GrFragmentProcessor**, GrTexture*,
- const SkMatrix&, const SkIRect&) const {
- return false;
-}
-
sk_sp<SkImageFilter> SkImageFilter::MakeMatrixFilter(const SkMatrix& matrix,
SkFilterQuality filterQuality,
sk_sp<SkImageFilter> input) {