You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
662 B
35 lines
662 B
4 months ago
|
/*
|
||
|
* 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 GMSlide_DEFINED
|
||
|
#define GMSlide_DEFINED
|
||
|
|
||
|
#include "Slide.h"
|
||
|
#include "gm.h"
|
||
|
|
||
|
class GMSlide : public Slide {
|
||
|
public:
|
||
|
GMSlide(skiagm::GM* gm);
|
||
|
~GMSlide() override;
|
||
|
|
||
|
SkISize getDimensions() const override { return fGM->getISize(); }
|
||
|
|
||
|
void draw(SkCanvas* canvas) override;
|
||
|
bool animate(const SkAnimTimer&) override;
|
||
|
|
||
|
bool onChar(SkUnichar c) override;
|
||
|
|
||
|
bool onGetControls(SkMetaData*) override;
|
||
|
void onSetControls(const SkMetaData&) override;
|
||
|
|
||
|
private:
|
||
|
skiagm::GM* fGM;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|