72c9faab45
This fixes every case where virtual and SK_OVERRIDE were on the same line, which should be the bulk of cases. We'll have to manually clean up the rest over time unless I level up in regexes. for f in (find . -type f); perl -p -i -e 's/virtual (.*)SK_OVERRIDE/\1SK_OVERRIDE/g' $f; end BUG=skia: Review URL: https://codereview.chromium.org/806653007
40 lines
979 B
C++
40 lines
979 B
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkArcToPathEffect_DEFINED
|
|
#define SkArcToPathEffect_DEFINED
|
|
|
|
#include "SkPathEffect.h"
|
|
|
|
class SK_API SkArcToPathEffect : public SkPathEffect {
|
|
public:
|
|
/** radius must be > 0 to have an effect. It specifies the distance from each corner
|
|
that should be "rounded".
|
|
*/
|
|
static SkPathEffect* Create(SkScalar radius) {
|
|
if (radius <= 0) {
|
|
return NULL;
|
|
}
|
|
return SkNEW_ARGS(SkArcToPathEffect, (radius));
|
|
}
|
|
|
|
bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*) const SK_OVERRIDE;
|
|
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkArcToPathEffect)
|
|
|
|
protected:
|
|
explicit SkArcToPathEffect(SkScalar radius);
|
|
void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
|
|
|
private:
|
|
SkScalar fRadius;
|
|
|
|
typedef SkPathEffect INHERITED;
|
|
};
|
|
|
|
#endif
|