diff options
author | bsalomon <bsalomon@google.com> | 2015-08-26 05:39:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-26 05:39:18 -0700 |
commit | 24243446cdf7b7e4e132c2a0c387c7723777e0c7 (patch) | |
tree | a1515829dd08b0c600dc5878fe3495d28adc8549 /src/effects | |
parent | 60e0fee6d4acff638ccc9670c4055aced529a7a0 (diff) |
Remove GrStagedProcessor, remove the word Stage as it applies to FPs
Review URL: https://codereview.chromium.org/1307223004
Diffstat (limited to 'src/effects')
-rw-r--r-- | src/effects/SkBlurMaskFilter.cpp | 8 | ||||
-rw-r--r-- | src/effects/SkDisplacementMapEffect.cpp | 2 | ||||
-rw-r--r-- | src/effects/SkGpuBlurUtils.cpp | 6 | ||||
-rw-r--r-- | src/effects/SkLightingImageFilter.cpp | 2 | ||||
-rw-r--r-- | src/effects/SkMorphologyImageFilter.cpp | 22 | ||||
-rw-r--r-- | src/effects/SkXfermodeImageFilter.cpp | 4 |
6 files changed, 22 insertions, 22 deletions
diff --git a/src/effects/SkBlurMaskFilter.cpp b/src/effects/SkBlurMaskFilter.cpp index 96789c2d35..7faf52e368 100644 --- a/src/effects/SkBlurMaskFilter.cpp +++ b/src/effects/SkBlurMaskFilter.cpp @@ -859,7 +859,7 @@ bool SkBlurMaskFilterImpl::directFilterMaskGPU(GrTextureProvider* texProvider, return false; } - grp->addCoverageProcessor(fp); + grp->addCoverageFragmentProcessor(fp); SkMatrix inverse; if (!viewMatrix.invert(&inverse)) { @@ -1135,7 +1135,7 @@ bool SkBlurMaskFilterImpl::directFilterRRectMaskGPU(GrTextureProvider* texProvid return false; } - grp->addCoverageProcessor(fp); + grp->addCoverageFragmentProcessor(fp); SkMatrix inverse; if (!viewMatrix.invert(&inverse)) { @@ -1211,8 +1211,8 @@ bool SkBlurMaskFilterImpl::filterMaskGPU(GrTexture* src, SkMatrix matrix; matrix.setIDiv(src->width(), src->height()); // Blend pathTexture over blurTexture. - paint.addCoverageProcessor(GrSimpleTextureEffect::Create(paint.getProcessorDataManager(), - src, matrix))->unref(); + paint.addCoverageFragmentProcessor( + GrSimpleTextureEffect::Create(paint.getProcessorDataManager(), src, matrix))->unref(); if (kInner_SkBlurStyle == fBlurStyle) { // inner: dst = dst * src paint.setCoverageSetOpXPFactory(SkRegion::kIntersect_Op); diff --git a/src/effects/SkDisplacementMapEffect.cpp b/src/effects/SkDisplacementMapEffect.cpp index f360fe102c..fe52317cc8 100644 --- a/src/effects/SkDisplacementMapEffect.cpp +++ b/src/effects/SkDisplacementMapEffect.cpp @@ -444,7 +444,7 @@ bool SkDisplacementMapEffect::filterImageGPU(Proxy* proxy, const SkBitmap& src, offsetMatrix.preTranslate(SkIntToScalar(colorOffset.fX - displacementOffset.fX), SkIntToScalar(colorOffset.fY - displacementOffset.fY)); - paint.addColorProcessor( + paint.addColorFragmentProcessor( GrDisplacementMapEffect::Create(paint.getProcessorDataManager(), fXChannelSelector, fYChannelSelector, diff --git a/src/effects/SkGpuBlurUtils.cpp b/src/effects/SkGpuBlurUtils.cpp index 7c239a1bc3..2b6b310819 100644 --- a/src/effects/SkGpuBlurUtils.cpp +++ b/src/effects/SkGpuBlurUtils.cpp @@ -59,7 +59,7 @@ static void convolve_gaussian_1d(GrDrawContext* drawContext, GrPaint paint; SkAutoTUnref<GrFragmentProcessor> conv(GrConvolutionEffect::CreateGaussian( paint.getProcessorDataManager(), texture, direction, radius, sigma, useBounds, bounds)); - paint.addColorProcessor(conv); + paint.addColorFragmentProcessor(conv); drawContext->drawNonAARectToRect(rt, clip, paint, SkMatrix::I(), dstRect, srcRect); } @@ -83,7 +83,7 @@ static void convolve_gaussian_2d(GrDrawContext* drawContext, texture, bounds, size, 1.0, 0.0, kernelOffset, useBounds ? GrTextureDomain::kClamp_Mode : GrTextureDomain::kIgnore_Mode, true, sigmaX, sigmaY)); - paint.addColorProcessor(conv); + paint.addColorFragmentProcessor(conv); drawContext->drawNonAARectToRect(rt, clip, paint, SkMatrix::I(), dstRect, srcRect); } @@ -216,7 +216,7 @@ GrTexture* GaussianBlur(GrContext* context, domain, GrTextureDomain::kDecal_Mode, GrTextureParams::kBilerp_FilterMode)); - paint.addColorProcessor(fp); + paint.addColorFragmentProcessor(fp); } else { GrTextureParams params(SkShader::kClamp_TileMode, GrTextureParams::kBilerp_FilterMode); paint.addColorTextureProcessor(srcTexture, matrix, params); diff --git a/src/effects/SkLightingImageFilter.cpp b/src/effects/SkLightingImageFilter.cpp index c63b2ebe50..6dbe73429c 100644 --- a/src/effects/SkLightingImageFilter.cpp +++ b/src/effects/SkLightingImageFilter.cpp @@ -354,7 +354,7 @@ void SkLightingImageFilterInternal::drawRect(GrDrawContext* drawContext, GrPaint paint; GrFragmentProcessor* fp = this->getFragmentProcessor(paint.getProcessorDataManager(), src, matrix, bounds, boundaryMode); - paint.addColorProcessor(fp)->unref(); + paint.addColorFragmentProcessor(fp)->unref(); drawContext->drawNonAARectToRect(dst->asRenderTarget(), clip, paint, SkMatrix::I(), dstRect, srcRect); } diff --git a/src/effects/SkMorphologyImageFilter.cpp b/src/effects/SkMorphologyImageFilter.cpp index 01e978e846..f1a7d09b8b 100644 --- a/src/effects/SkMorphologyImageFilter.cpp +++ b/src/effects/SkMorphologyImageFilter.cpp @@ -471,12 +471,12 @@ void apply_morphology_rect(GrDrawContext* drawContext, float bounds[2], Gr1DKernelEffect::Direction direction) { GrPaint paint; - paint.addColorProcessor(GrMorphologyEffect::Create(paint.getProcessorDataManager(), - texture, - direction, - radius, - morphType, - bounds))->unref(); + paint.addColorFragmentProcessor(GrMorphologyEffect::Create(paint.getProcessorDataManager(), + texture, + direction, + radius, + morphType, + bounds))->unref(); drawContext->drawNonAARectToRect(rt, clip, paint, SkMatrix::I(), SkRect::Make(dstRect), SkRect::Make(srcRect)); } @@ -491,11 +491,11 @@ void apply_morphology_rect_no_bounds(GrDrawContext* drawContext, GrMorphologyEffect::MorphologyType morphType, Gr1DKernelEffect::Direction direction) { GrPaint paint; - paint.addColorProcessor(GrMorphologyEffect::Create(paint.getProcessorDataManager(), - texture, - direction, - radius, - morphType))->unref(); + paint.addColorFragmentProcessor(GrMorphologyEffect::Create(paint.getProcessorDataManager(), + texture, + direction, + radius, + morphType))->unref(); drawContext->drawNonAARectToRect(rt, clip, paint, SkMatrix::I(), SkRect::Make(dstRect), SkRect::Make(srcRect)); } diff --git a/src/effects/SkXfermodeImageFilter.cpp b/src/effects/SkXfermodeImageFilter.cpp index e014cc0471..f62773a250 100644 --- a/src/effects/SkXfermodeImageFilter.cpp +++ b/src/effects/SkXfermodeImageFilter.cpp @@ -189,8 +189,8 @@ bool SkXfermodeImageFilter::filterImageGPU(Proxy* proxy, GrTextureParams::kNone_FilterMode) ); - paint.addColorProcessor(foregroundDomain.get()); - paint.addColorProcessor(xferProcessor)->unref(); + paint.addColorFragmentProcessor(foregroundDomain.get()); + paint.addColorFragmentProcessor(xferProcessor)->unref(); GrDrawContext* drawContext = context->drawContext(); if (!drawContext) { |