ed38d201de
AE supports dashing all strokes. Dashes are specified as an arbitrary number of intervals (alternating dash/gap) plus a start offset. All values can be animated independently (but of course!). - implement a SkSG dash effect (based on SkDashPathEffect) - expand the shape builder logic to allow local geometry adjustments (kind of a bummer that dashing is a stroke/paint property as opposed to a geometry effect in AE) Change-Id: Ic9ff35f2f9a552a3c26f9e1596ce58ad81f7ced5 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/274550 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org>
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
# Copyright 2018 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Things are easiest for everyone if these source paths are absolute.
|
|
_src = get_path_info("src", "abspath")
|
|
|
|
skia_sksg_sources = [
|
|
"$_src/SkSGClipEffect.cpp",
|
|
"$_src/SkSGColorFilter.cpp",
|
|
"$_src/SkSGDashEffect.cpp",
|
|
"$_src/SkSGDraw.cpp",
|
|
"$_src/SkSGEffectNode.cpp",
|
|
"$_src/SkSGGeometryNode.cpp",
|
|
"$_src/SkSGGeometryTransform.cpp",
|
|
"$_src/SkSGGradient.cpp",
|
|
"$_src/SkSGGroup.cpp",
|
|
"$_src/SkSGImage.cpp",
|
|
"$_src/SkSGInvalidationController.cpp",
|
|
"$_src/SkSGMaskEffect.cpp",
|
|
"$_src/SkSGMerge.cpp",
|
|
"$_src/SkSGNode.cpp",
|
|
"$_src/SkSGNodePriv.h",
|
|
"$_src/SkSGOpacityEffect.cpp",
|
|
"$_src/SkSGPaint.cpp",
|
|
"$_src/SkSGPath.cpp",
|
|
"$_src/SkSGPlane.cpp",
|
|
"$_src/SkSGRect.cpp",
|
|
"$_src/SkSGRenderEffect.cpp",
|
|
"$_src/SkSGRenderNode.cpp",
|
|
"$_src/SkSGRoundEffect.cpp",
|
|
"$_src/SkSGScene.cpp",
|
|
"$_src/SkSGText.cpp",
|
|
"$_src/SkSGTransform.cpp",
|
|
"$_src/SkSGTransformPriv.h",
|
|
"$_src/SkSGTrimEffect.cpp",
|
|
]
|