3f3b3d0035
This was needed for pictures before v33, and we're now requiring v35+. Will follow up with the same for skia/ext/pixel_ref_utils_unittest.cc BUG=skia: Committed: https://skia.googlesource.com/skia/+/52c293547b973f7fb5de3c83f5062b07d759ab88 Review URL: https://codereview.chromium.org/769953002
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
/*
|
|
* Copyright 2012 The Android Open Source Project
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkBitmapSource_DEFINED
|
|
#define SkBitmapSource_DEFINED
|
|
|
|
#include "SkImageFilter.h"
|
|
#include "SkBitmap.h"
|
|
|
|
class SK_API SkBitmapSource : public SkImageFilter {
|
|
public:
|
|
static SkBitmapSource* Create(const SkBitmap& bitmap) {
|
|
return SkNEW_ARGS(SkBitmapSource, (bitmap));
|
|
}
|
|
static SkBitmapSource* Create(const SkBitmap& bitmap, const SkRect& srcRect,
|
|
const SkRect& dstRect) {
|
|
return SkNEW_ARGS(SkBitmapSource, (bitmap, srcRect, dstRect));
|
|
}
|
|
virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVERRIDE;
|
|
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBitmapSource)
|
|
|
|
protected:
|
|
explicit SkBitmapSource(const SkBitmap& bitmap);
|
|
SkBitmapSource(const SkBitmap& bitmap, const SkRect& srcRect, const SkRect& dstRect);
|
|
virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
|
|
|
virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
|
|
SkBitmap* result, SkIPoint* offset) const SK_OVERRIDE;
|
|
|
|
private:
|
|
SkBitmap fBitmap;
|
|
SkRect fSrcRect, fDstRect;
|
|
typedef SkImageFilter INHERITED;
|
|
};
|
|
|
|
#endif
|