543d2e2f2e
Added a simpler circle drawable, moved drawing code out so that frame calculation is handled by the drawable. Fixed all the sample effects, including some size adjustments to better create the intended effect. Bug: skia: Change-Id: I60af9cd6262ff98352ca8ceaf6768aef9c7e164c Reviewed-on: https://skia-review.googlesource.com/c/193029 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
17 lines
454 B
Plaintext
17 lines
454 B
Plaintext
# Copyright 2019 Google LLC
|
|
#
|
|
# 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_particle_sources = [
|
|
"$_src/SkCurve.cpp",
|
|
"$_src/SkParticleAffector.cpp",
|
|
"$_src/SkParticleDrawable.cpp",
|
|
"$_src/SkParticleEffect.cpp",
|
|
"$_src/SkParticleEmitter.cpp",
|
|
"$_src/SkReflected.cpp",
|
|
]
|