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

Side by Side Diff: src/images/SkBitmapRegionDecoder.cpp

Issue 12604006: Upstream Android modifications to the image encoders/decoders. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #include "SkBitmapRegionDecoder.h"
robertphillips 2013/03/11 18:25:55 Missing header
djsollen 2013/03/11 19:43:24 Done.
2
3 bool SkBitmapRegionDecoder::decodeRegion(SkBitmap* bitmap, SkIRect rect,
djsollen 2013/03/11 17:47:24 const SkIRect&
4 SkBitmap::Config pref, int sampleSize) {
5 fDecoder->setSampleSize(sampleSize);
6 return fDecoder->decodeRegion(bitmap, rect, pref);
7 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698