/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkArithmeticImageFilter_DEFINED #define SkArithmeticImageFilter_DEFINED #include "SkImageFilter.h" class SK_API SkArithmeticImageFilter { public: static sk_sp Make(float k1, float k2, float k3, float k4, bool enforcePMColor, sk_sp background, sk_sp foreground, const SkImageFilter::CropRect* cropRect); static void InitializeFlattenables(); private: SkArithmeticImageFilter(); // can't instantiate }; #endif