diff options
Diffstat (limited to 'gfx/skia/skia/src/animator/SkDrawDash.cpp')
-rw-r--r-- | gfx/skia/skia/src/animator/SkDrawDash.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gfx/skia/skia/src/animator/SkDrawDash.cpp b/gfx/skia/skia/src/animator/SkDrawDash.cpp new file mode 100644 index 000000000..e7fcc8410 --- /dev/null +++ b/gfx/skia/skia/src/animator/SkDrawDash.cpp @@ -0,0 +1,35 @@ + +/* + * Copyright 2006 The Android Open Source Project + * + * Use of this source code is governed by a BSD-style license that can be + * found in the LICENSE file. + */ + + +#include "SkDrawDash.h" +#include "SkDashPathEffect.h" + +#if SK_USE_CONDENSED_INFO == 0 + +const SkMemberInfo SkDash::fInfo[] = { + SK_MEMBER_ARRAY(intervals, Float), + SK_MEMBER(phase, Float) +}; + +#endif + +DEFINE_GET_MEMBER(SkDash); + +SkDash::SkDash() : phase(0) { +} + +SkDash::~SkDash() { +} + +SkPathEffect* SkDash::getPathEffect() { + int count = intervals.count(); + if (count == 0) + return nullptr; + return SkDashPathEffect::Make(intervals.begin(), count, phase).release(); +} |