d4aa36a9b6
This reverts commit ddd64d35c6
.
Reason for revert: breaking the android build
Original change's description:
> create ParticleDrawable for animated Skotties
>
> Change-Id: Ieaea5e9c358604a25f0fecd7bac71a0450359653
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/538042
> Reviewed-by: Florin Malita <fmalita@google.com>
> Commit-Queue: Jorge Betancourt <jmbetancourt@google.com>
> Reviewed-by: Brian Osman <brianosman@google.com>
Change-Id: Ida2bfe6359790a49a8c2b4f8a3b96d9b14da5600
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/539083
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Auto-Submit: Derek Sollenberger <djsollen@google.com>
33 lines
938 B
C++
33 lines
938 B
C++
/*
|
|
* Copyright 2019 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkParticleDrawable_DEFINED
|
|
#define SkParticleDrawable_DEFINED
|
|
|
|
#include "modules/particles/include/SkReflected.h"
|
|
|
|
class SkCanvas;
|
|
struct SkParticles;
|
|
|
|
namespace skresources { class ResourceProvider; }
|
|
|
|
class SkParticleDrawable : public SkReflected {
|
|
public:
|
|
REFLECTED_ABSTRACT(SkParticleDrawable, SkReflected)
|
|
|
|
virtual void draw(SkCanvas* canvas, const SkParticles& particles, int count) = 0;
|
|
virtual void prepare(const skresources::ResourceProvider* resourceProvider) = 0;
|
|
|
|
static void RegisterDrawableTypes();
|
|
|
|
static sk_sp<SkParticleDrawable> MakeCircle(int radius);
|
|
static sk_sp<SkParticleDrawable> MakeImage(const char* imagePath, const char* imageName,
|
|
int cols, int rows);
|
|
};
|
|
|
|
#endif // SkParticleEffect_DEFINED
|