Skia
2DGraphicsLibrary
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SkDashPathEffect.h
1 /*
2  * Copyright 2006 The Android Open Source Project
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 SkDashPathEffect_DEFINED
9 #define SkDashPathEffect_DEFINED
10 
11 #include "SkPathEffect.h"
12 
13 class SK_API SkDashPathEffect {
14 public:
35  static sk_sp<SkPathEffect> Make(const SkScalar intervals[], int count, SkScalar phase);
36 };
37 
38 #endif
Definition: SkDashPathEffect.h:13