From dcacd5fd5a0baeb83d8c61bb6127c442ef72e29a Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Tue, 22 Apr 2014 18:22:30 +0000 Subject: eliminate config param -- it was always self's config BUG=skia: R=bsalomon@google.com Review URL: https://codereview.chromium.org/246513002 git-svn-id: http://skia.googlecode.com/svn/trunk@14303 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkPixelRef.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/core/SkPixelRef.h') diff --git a/include/core/SkPixelRef.h b/include/core/SkPixelRef.h index 8319ec6da5..579ca5b7e8 100644 --- a/include/core/SkPixelRef.h +++ b/include/core/SkPixelRef.h @@ -223,14 +223,13 @@ public: /** * Makes a deep copy of this PixelRef, respecting the requested config. - * @param config Desired config. * @param subset Subset of this PixelRef to copy. Must be fully contained within the bounds of * of this PixelRef. * @return A new SkPixelRef, or NULL if either there is an error (e.g. the destination could * not be created with the given config), or this PixelRef does not support deep * copies. */ - virtual SkPixelRef* deepCopy(SkBitmap::Config config, const SkIRect* subset = NULL) { + virtual SkPixelRef* deepCopy(const SkIRect* subset = NULL) { return NULL; } -- cgit v1.2.3