• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2021 Google LLC
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 SkRuntimeImageFilter_DEFINED
9 #define SkRuntimeImageFilter_DEFINED
10 
11 #include "include/core/SkRefCnt.h"
12 
13 class SkData;
14 class SkImageFilter;
15 struct SkRect;
16 class SkRuntimeEffect;
17 
18 SK_API sk_sp<SkImageFilter> SkMakeRuntimeImageFilter(sk_sp<SkRuntimeEffect> effect,
19                                                      sk_sp<SkData> uniforms,
20                                                      sk_sp<SkImageFilter> input);
21 
22 #endif
23