blob: 84c2765ce7099db658ed4bfee0fb8ddcc63b222f [file] [log] [blame]
/*
* 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 "include/core/SkImageFilter.h"
struct ArithmeticFPInputs {
float fK[4];
bool fEnforcePMColor;
};
// DEPRECATED: Use include/effects/SkImageFilters::Arithmetic
class SK_API SkArithmeticImageFilter {
public:
static sk_sp<SkImageFilter> Make(float k1, float k2, float k3, float k4, bool enforcePMColor,
sk_sp<SkImageFilter> background,
sk_sp<SkImageFilter> foreground,
const SkImageFilter::CropRect* cropRect);
static void RegisterFlattenables();
private:
SkArithmeticImageFilter(); // can't instantiate
};
#endif