52a4379f03
Dash, trim, round, transform and upcoming offset have a lot in common. Introduce a GeometryEffect base class to consolidate. TBR= Change-Id: Ib5556e6ebe416685c624d53ba8591e118aa4f0d6 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/300496 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Florin Malita <fmalita@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org>
36 lines
976 B
Plaintext
36 lines
976 B
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/SkSGDraw.cpp",
|
|
"$_src/SkSGEffectNode.cpp",
|
|
"$_src/SkSGGeometryEffect.cpp",
|
|
"$_src/SkSGGeometryNode.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/SkSGScene.cpp",
|
|
"$_src/SkSGText.cpp",
|
|
"$_src/SkSGTransform.cpp",
|
|
"$_src/SkSGTransformPriv.h",
|
|
]
|