Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |