2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkCornerPathEffect_DEFINED
|
|
|
|
#define SkCornerPathEffect_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkPathEffect.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
/** \class SkCornerPathEffect
|
|
|
|
|
|
|
|
SkCornerPathEffect is a subclass of SkPathEffect that can turn sharp corners
|
|
|
|
into various treatments (e.g. rounded corners)
|
|
|
|
*/
|
2021-05-21 15:00:36 +00:00
|
|
|
class SK_API SkCornerPathEffect {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
|
|
|
/** radius must be > 0 to have an effect. It specifies the distance from each corner
|
|
|
|
that should be "rounded".
|
|
|
|
*/
|
2021-05-21 15:00:36 +00:00
|
|
|
static sk_sp<SkPathEffect> Make(SkScalar radius);
|
2016-03-18 18:22:57 +00:00
|
|
|
|
2021-05-21 15:00:36 +00:00
|
|
|
static void RegisterFlattenables();
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|