/* * Copyright 2018 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkShaderMaskFilter_DEFINED #define SkShaderMaskFilter_DEFINED #include "SkMaskFilter.h" class SkShader; class SK_API SkShaderMaskFilter { public: static sk_sp Make(sk_sp shader); private: static void InitializeFlattenables(); friend class SkFlattenable; }; #endif