| * Copyright 2016 Google Inc. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| #include "tools/viewer/Slide.h" |
| class GMSlide : public Slide { |
| GMSlide(std::unique_ptr<skiagm::GM> gm); |
| SkISize getDimensions() const override { return fGM->getISize(); } |
| void draw(SkCanvas* canvas) override; |
| bool animate(double nanos) override; |
| bool onChar(SkUnichar c) override; |
| bool onGetControls(SkMetaData*) override; |
| void onSetControls(const SkMetaData&) override; |
| std::unique_ptr<skiagm::GM> fGM; |