aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBitmapScaler.h
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-05 20:31:17 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-05 20:31:17 +0000
commitfed04b34315ed72dbb20e630908638d1c829c760 (patch)
tree1a306b22dbe4f62c6de3ee441cde4f374b3af979 /src/core/SkBitmapScaler.h
parentbca421b468f53a591333918248f54bbd958389d2 (diff)
remove fConvolutionProcs from State, and just use it locally
BUG= R=humper@google.com Review URL: https://codereview.chromium.org/23796005 git-svn-id: http://skia.googlecode.com/svn/trunk@11118 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkBitmapScaler.h')
-rw-r--r--src/core/SkBitmapScaler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkBitmapScaler.h b/src/core/SkBitmapScaler.h
index b88fb9e775..c8d8a84185 100644
--- a/src/core/SkBitmapScaler.h
+++ b/src/core/SkBitmapScaler.h
@@ -92,7 +92,7 @@ public:
ResizeMethod method,
int dest_width, int dest_height,
const SkIRect& dest_subset,
- SkConvolutionProcs *convolveProcs = NULL,
+ const SkConvolutionProcs&,
SkBitmap::Allocator* allocator = NULL);
// Alternate version for resizing and returning the entire bitmap rather than
@@ -101,7 +101,7 @@ public:
const SkBitmap& source,
ResizeMethod method,
int dest_width, int dest_height,
- SkConvolutionProcs *convolveProcs = NULL,
+ const SkConvolutionProcs&,
SkBitmap::Allocator* allocator = NULL);
};