/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkMaskBlurFilter_DEFINED #define SkMaskBlurFilter_DEFINED #include <algorithm> #include <memory> #include <tuple> #include "include/core/SkTypes.h" #include "src/core/SkMask.h" // Implement a single channel Gaussian blur. The specifics for implementation are taken from: // https://drafts.fxtf.org/filters/#feGaussianBlurElement class SkMaskBlurFilter { … }; #endif // SkBlurMaskFilter_DEFINED