aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/image_pict.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-10-12 10:39:46 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-10-12 10:39:46 -0700
commitafa95e270c64c9777647b6c58b796750ced57c39 (patch)
tree56b617f224fa34d96ed23e617ee503583e517263 /gm/image_pict.cpp
parent04965c6f112565c02926bc9a230e6da5f400d07a (diff)
Remove image usage type enum. Use GrTextureParams instead.
Diffstat (limited to 'gm/image_pict.cpp')
-rw-r--r--gm/image_pict.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/gm/image_pict.cpp b/gm/image_pict.cpp
index 53ae99022a..72590094c8 100644
--- a/gm/image_pict.cpp
+++ b/gm/image_pict.cpp
@@ -220,7 +220,8 @@ public:
fTexture.reset(SkRef(image->getTexture()));
}
protected:
- GrTexture* onGenerateTexture(GrContext* ctx, SkImageUsageType, const SkIRect* subset) override {
+ GrTexture* onGenerateTexture(GrContext* ctx, const GrTextureParams& params,
+ const SkIRect* subset) override {
if (ctx) {
SkASSERT(ctx == fCtx.get());
}
@@ -310,7 +311,7 @@ protected:
static void draw_as_tex(SkCanvas* canvas, SkImageCacherator* cache, SkScalar x, SkScalar y) {
#if SK_SUPPORT_GPU
SkAutoTUnref<GrTexture> texture(cache->lockAsTexture(canvas->getGrContext(),
- kUntiled_SkImageUsageType,
+ GrTextureParams::ClampBilerp(),
nullptr));
if (!texture) {
// show placeholder if we have no texture