HomeSort by relevance Sort by last modified time
    Searched defs:SkLocalMatrixImageFilter (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkLocalMatrixImageFilter.h 17 class SkLocalMatrixImageFilter : public SkImageFilter {
22 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLocalMatrixImageFilter)
32 SkLocalMatrixImageFilter(const SkMatrix& localM, sk_sp<SkImageFilter> input);
SkLocalMatrixImageFilter.cpp 9 #include "SkLocalMatrixImageFilter.h"
14 sk_sp<SkImageFilter> SkLocalMatrixImageFilter::Make(const SkMatrix& localM,
25 return sk_sp<SkImageFilter>(new SkLocalMatrixImageFilter(localM, input));
28 SkLocalMatrixImageFilter::SkLocalMatrixImageFilter(const SkMatrix& localM,
34 sk_sp<SkFlattenable> SkLocalMatrixImageFilter::CreateProc(SkReadBuffer& buffer) {
38 return SkLocalMatrixImageFilter::Make(lm, common.getInput(0));
41 void SkLocalMatrixImageFilter::flatten(SkWriteBuffer& buffer) const {
46 sk_sp<SkSpecialImage> SkLocalMatrixImageFilter::onFilterImage(SkSpecialImage* source,
54 SkIRect SkLocalMatrixImageFilter::onFilterBounds(const SkIRect& src, const SkMatrix& matrix
    [all...]

Completed in 755 milliseconds