1/*
2 * Copyright 2020 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkColorFilterPriv_DEFINED
9#define SkColorFilterPriv_DEFINED
10
11#include "include/core/SkColorFilter.h"
12
13class SkColorFilterPriv {
14public:
15 static sk_sp<SkColorFilter> MakeGaussian();
16};
17
18#endif
19