diff options
author | Brian Salomon <bsalomon@google.com> | 2016-11-17 15:17:07 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2016-11-17 21:13:18 +0000 |
commit | 514baff8be7f71111aa7bfb9b099a096b31e16ec (patch) | |
tree | 635854f47c42f30de48e739b42eb85aba2f1efb3 /src/core | |
parent | 7776029b54cc8c21fd6e0c1aa5a3b30e8bb52939 (diff) |
Rename GrTextureParams to GrSamplerParams
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4965
Change-Id: I7d52e81c670e92ca96117284f44b274ce3cc3671
Reviewed-on: https://skia-review.googlesource.com/4965
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkGpuBlurUtils.cpp | 6 | ||||
-rw-r--r-- | src/core/SkImageCacherator.cpp | 6 | ||||
-rw-r--r-- | src/core/SkImageCacherator.h | 4 | ||||
-rw-r--r-- | src/core/SkNormalMapSource.cpp | 2 | ||||
-rw-r--r-- | src/core/SkShadowShader.cpp | 2 | ||||
-rw-r--r-- | src/core/SkSpecialImage.cpp | 8 |
6 files changed, 14 insertions, 14 deletions
diff --git a/src/core/SkGpuBlurUtils.cpp b/src/core/SkGpuBlurUtils.cpp index 8107642783..84cc8d8d14 100644 --- a/src/core/SkGpuBlurUtils.cpp +++ b/src/core/SkGpuBlurUtils.cpp @@ -275,12 +275,12 @@ sk_sp<GrRenderTargetContext> GaussianBlur(GrContext* context, matrix, domain, GrTextureDomain::kDecal_Mode, - GrTextureParams::kBilerp_FilterMode)); + GrSamplerParams::kBilerp_FilterMode)); paint.addColorFragmentProcessor(std::move(fp)); srcRect.offset(-srcOffset); srcOffset.set(0, 0); } else { - GrTextureParams params(SkShader::kClamp_TileMode, GrTextureParams::kBilerp_FilterMode); + GrSamplerParams params(SkShader::kClamp_TileMode, GrSamplerParams::kBilerp_FilterMode); paint.addColorTextureProcessor(srcTexture.get(), nullptr, matrix, params); } paint.setPorterDuffXPFactory(SkBlendMode::kSrc); @@ -356,7 +356,7 @@ sk_sp<GrRenderTargetContext> GaussianBlur(GrContext* context, GrPaint paint; paint.setGammaCorrect(dstRenderTargetContext->isGammaCorrect()); // FIXME: this should be mitchell, not bilinear. - GrTextureParams params(SkShader::kClamp_TileMode, GrTextureParams::kBilerp_FilterMode); + GrSamplerParams params(SkShader::kClamp_TileMode, GrSamplerParams::kBilerp_FilterMode); sk_sp<GrTexture> tex(srcRenderTargetContext->asTexture()); paint.addColorTextureProcessor(tex.get(), nullptr, matrix, params); paint.setPorterDuffXPFactory(SkBlendMode::kSrc); diff --git a/src/core/SkImageCacherator.cpp b/src/core/SkImageCacherator.cpp index 471dbd6d33..e29124212a 100644 --- a/src/core/SkImageCacherator.cpp +++ b/src/core/SkImageCacherator.cpp @@ -19,7 +19,7 @@ #include "GrGpuResourcePriv.h" #include "GrImageIDTextureAdjuster.h" #include "GrResourceKey.h" -#include "GrTextureParams.h" +#include "GrSamplerParams.h" #include "GrYUVProvider.h" #include "SkGr.h" #include "SkGrPriv.h" @@ -371,7 +371,7 @@ GrTexture* SkImageCacherator::lockTexture(GrContext* ctx, const GrUniqueKey& key /////////////////////////////////////////////////////////////////////////////////////////////////// -GrTexture* SkImageCacherator::lockAsTexture(GrContext* ctx, const GrTextureParams& params, +GrTexture* SkImageCacherator::lockAsTexture(GrContext* ctx, const GrSamplerParams& params, SkDestinationSurfaceColorMode colorMode, const SkImage* client, SkImage::CachingHint chint) { if (!ctx) { @@ -383,7 +383,7 @@ GrTexture* SkImageCacherator::lockAsTexture(GrContext* ctx, const GrTextureParam #else -GrTexture* SkImageCacherator::lockAsTexture(GrContext* ctx, const GrTextureParams&, +GrTexture* SkImageCacherator::lockAsTexture(GrContext* ctx, const GrSamplerParams&, SkDestinationSurfaceColorMode colorMode, const SkImage* client, SkImage::CachingHint) { return nullptr; diff --git a/src/core/SkImageCacherator.h b/src/core/SkImageCacherator.h index 0e8a953f37..3500206459 100644 --- a/src/core/SkImageCacherator.h +++ b/src/core/SkImageCacherator.h @@ -13,7 +13,7 @@ #include "SkTemplates.h" class GrContext; -class GrTextureParams; +class GrSamplerParams; class GrUniqueKey; class SkBitmap; class SkImage; @@ -50,7 +50,7 @@ public: * * The caller is responsible for calling texture->unref() when they are done. */ - GrTexture* lockAsTexture(GrContext*, const GrTextureParams&, + GrTexture* lockAsTexture(GrContext*, const GrSamplerParams&, SkDestinationSurfaceColorMode colorMode, const SkImage* client, SkImage::CachingHint = SkImage::kAllow_CachingHint); diff --git a/src/core/SkNormalMapSource.cpp b/src/core/SkNormalMapSource.cpp index 25c533cdbf..70d6c4300e 100644 --- a/src/core/SkNormalMapSource.cpp +++ b/src/core/SkNormalMapSource.cpp @@ -18,7 +18,7 @@ #if SK_SUPPORT_GPU #include "GrCoordTransform.h" #include "GrInvariantOutput.h" -#include "GrTextureParams.h" +#include "GrSamplerParams.h" #include "glsl/GrGLSLFragmentProcessor.h" #include "glsl/GrGLSLFragmentShaderBuilder.h" #include "SkGr.h" diff --git a/src/core/SkShadowShader.cpp b/src/core/SkShadowShader.cpp index 9757298e94..db04638f02 100644 --- a/src/core/SkShadowShader.cpp +++ b/src/core/SkShadowShader.cpp @@ -138,7 +138,7 @@ public: // gets deleted when the ShadowFP is destroyed, and frees the GrTexture* fTexture[fNumNonAmbLights] = sk_sp<GrTexture>(shadowMap->asTextureRef(context, - GrTextureParams::ClampNoFilter(), + GrSamplerParams::ClampNoFilter(), SkDestinationSurfaceColorMode::kLegacy)); fDepthMapSampler[fNumNonAmbLights].reset(fTexture[fNumNonAmbLights].get()); this->addTextureSampler(&fDepthMapSampler[fNumNonAmbLights]); diff --git a/src/core/SkSpecialImage.cpp b/src/core/SkSpecialImage.cpp index c97eb01257..c25079e816 100644 --- a/src/core/SkSpecialImage.cpp +++ b/src/core/SkSpecialImage.cpp @@ -18,7 +18,7 @@ #if SK_SUPPORT_GPU #include "GrContext.h" #include "GrTexture.h" -#include "GrTextureParams.h" +#include "GrSamplerParams.h" #include "GrTextureProxy.h" #include "SkGr.h" #include "SkGrPriv.h" @@ -102,7 +102,7 @@ sk_sp<SkSpecialImage> SkSpecialImage::makeTextureImage(GrContext* context) { } sk_sp<GrTexture> resultTex( - GrRefCachedBitmapTexture(context, bmp, GrTextureParams::ClampNoFilter(), + GrRefCachedBitmapTexture(context, bmp, GrSamplerParams::ClampNoFilter(), SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware)); if (!resultTex) { return nullptr; @@ -241,7 +241,7 @@ public: sk_sp<GrTexture> onAsTextureRef(GrContext* context) const override { if (context) { return sk_ref_sp( - GrRefCachedBitmapTexture(context, fBitmap, GrTextureParams::ClampNoFilter(), + GrRefCachedBitmapTexture(context, fBitmap, GrSamplerParams::ClampNoFilter(), SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware)); } @@ -253,7 +253,7 @@ public: sk_sp<GrTexture> tex(sk_ref_sp(GrRefCachedBitmapTexture( context, fBitmap, - GrTextureParams::ClampNoFilter(), + GrSamplerParams::ClampNoFilter(), SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware))); sk_sp<GrSurfaceProxy> sProxy = GrSurfaceProxy::MakeWrapped(std::move(tex)); return sk_ref_sp(sProxy->asTextureProxy()); |