f533f116e6
Reason for revert: breaking on android compile Original issue's description: > Add samples to Viewer. > > This adds support with animation, assuming the sample has > implemented onAnimate. Event handling has not been > implemented. > > BUG=skia: > GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2056343004 > > Committed: https://skia.googlesource.com/skia/+/76963e73704a42a18c29d6fbdcccb566e5c67658 TBR=bsalomon@google.com,jvanverth@google.com # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review-Url: https://codereview.chromium.org/2063883002
37 lines
653 B
C++
37 lines
653 B
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef Slide_DEFINED
|
|
#define Slide_DEFINED
|
|
|
|
#include "SkRefCnt.h"
|
|
#include "SkSize.h"
|
|
#include "SkString.h"
|
|
|
|
class SkCanvas;
|
|
class SkAnimTimer;
|
|
|
|
class Slide : public SkRefCnt {
|
|
public:
|
|
virtual ~Slide() {}
|
|
|
|
virtual SkISize getDimensions() const = 0;
|
|
|
|
virtual void draw(SkCanvas* canvas) = 0;
|
|
virtual bool animate(const SkAnimTimer&) { return false; }
|
|
virtual void load() {}
|
|
virtual void unload() {}
|
|
|
|
SkString getName() { return fName; }
|
|
|
|
protected:
|
|
SkString fName;
|
|
};
|
|
|
|
|
|
#endif
|