blob: 7f0e5b80f3da748e2f4bd3afdcb9c416d26d6b57 [file] [log] [blame]
/*
* 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 ParticlesSlide_DEFINED
#define ParticlesSlide_DEFINED
#include "Slide.h"
#include "SkPath.h"
#include "SkRandom.h"
class SkParticleEffect;
class ParticlesSlide : public Slide {
public:
ParticlesSlide();
// TODO: We need a way for primarily interactive slides to always be as large as the window
SkISize getDimensions() const override { return SkISize::MakeEmpty(); }
void draw(SkCanvas* canvas) override;
bool animate(const SkAnimTimer& timer) override;
bool onMouse(SkScalar x, SkScalar y, sk_app::Window::InputState state,
uint32_t modifiers) override;
private:
SkRandom fRandom;
sk_sp<SkParticleEffect> fEffect;
};
#endif