Chromium Code Reviews| 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. |