Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: include/gpu/SkGpuDevice.h

Issue 83153006: HQ filtering for tiled/bleed drawBitmap (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: combine lines Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/gpu/SkGpuDevice.h
diff --git a/include/gpu/SkGpuDevice.h b/include/gpu/SkGpuDevice.h
index d37f63d7a0724e9547f55860dfc1b364365b95ff..198bad3788735f5c3da9d7075ea9c59c937b264c 100644
--- a/include/gpu/SkGpuDevice.h
+++ b/include/gpu/SkGpuDevice.h
@@ -197,14 +197,16 @@ private:
const SkRect&,
const GrTextureParams& params,
const SkPaint& paint,
- SkCanvas::DrawBitmapRectFlags flags);
+ SkCanvas::DrawBitmapRectFlags flags,
+ bool bicubic);
Stephen White 2013/11/27 21:50:06 Not a big deal, but it seems a little weird that b
bsalomon 2013/11/27 22:11:51 We could. The reason I did the bool was that the F
Stephen White 2013/11/27 22:31:13 Yeah, that's what I figured. Like I said, no big d
void drawTiledBitmap(const SkBitmap& bitmap,
const SkRect& srcRect,
const SkIRect& clippedSrcRect,
const GrTextureParams& params,
const SkPaint& paint,
SkCanvas::DrawBitmapRectFlags flags,
- int tileSize);
+ int tileSize,
+ bool bicubic);
/**
* Returns non-initialized instance.

Powered by Google App Engine
This is Rietveld 408576698