blob: 4cf1cca45c983b305f63554945b9360262a7f09c [file] [log] [blame]
commit-bot@chromium.orga936e372013-03-14 14:42:18 +00001/*
2 * Copyright 2011 The Android Open Source Project
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkBitmapRegionDecoder.h"
9
10bool SkBitmapRegionDecoder::decodeRegion(SkBitmap* bitmap, const SkIRect& rect,
11 SkBitmap::Config pref, int sampleSize) {
12 fDecoder->setSampleSize(sampleSize);
13 return fDecoder->decodeRegion(bitmap, rect, pref);
14}