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

Unified Diff: src/core/SkBitmapScaler.h

Issue 20102002: free cache in destructor, in case endContext was not called. change Resize to return bool indicatin… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months 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
« no previous file with comments | « src/core/SkBitmapProcState.cpp ('k') | src/core/SkBitmapScaler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkBitmapScaler.h
diff --git a/src/core/SkBitmapScaler.h b/src/core/SkBitmapScaler.h
index fcb6bdc50fb3eb3635c000f60bc2157447ff57fb..b88fb9e7757c2f83d25a421754b670f44d8ed8af 100644
--- a/src/core/SkBitmapScaler.h
+++ b/src/core/SkBitmapScaler.h
@@ -87,20 +87,22 @@ public:
// will save work if you do not need the entire bitmap.
//
// The destination subset must be smaller than the destination image.
- static SkBitmap Resize(const SkBitmap& source,
- ResizeMethod method,
- int dest_width, int dest_height,
- const SkIRect& dest_subset,
- SkConvolutionProcs *convolveProcs = NULL,
- SkBitmap::Allocator* allocator = NULL);
+ static bool Resize(SkBitmap* result,
+ const SkBitmap& source,
+ ResizeMethod method,
+ int dest_width, int dest_height,
+ const SkIRect& dest_subset,
+ SkConvolutionProcs *convolveProcs = NULL,
+ SkBitmap::Allocator* allocator = NULL);
// Alternate version for resizing and returning the entire bitmap rather than
// a subset.
- static SkBitmap Resize(const SkBitmap& source,
- ResizeMethod method,
- int dest_width, int dest_height,
- SkConvolutionProcs *convolveProcs = NULL,
- SkBitmap::Allocator* allocator = NULL);
+ static bool Resize(SkBitmap* result,
+ const SkBitmap& source,
+ ResizeMethod method,
+ int dest_width, int dest_height,
+ SkConvolutionProcs *convolveProcs = NULL,
+ SkBitmap::Allocator* allocator = NULL);
};
#endif
« no previous file with comments | « src/core/SkBitmapProcState.cpp ('k') | src/core/SkBitmapScaler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698