Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: tools/vulkan/viewer/Slide.h

Issue 1873733003: More cleanup in the Vulkan viewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/vulkan/viewer/SKPSlide.cpp ('k') | tools/vulkan/viewer/VulkanViewer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef Slide_DEFINED 8 #ifndef Slide_DEFINED
9 #define Slide_DEFINED 9 #define Slide_DEFINED
10 10
11 #include "SkRefCnt.h" 11 #include "SkRefCnt.h"
12 #include "SkString.h" 12 #include "SkString.h"
13 13
14 class SkCanvas; 14 class SkCanvas;
15 class SkAnimTimer;
15 16
16 class Slide : public SkRefCnt { 17 class Slide : public SkRefCnt {
17 public: 18 public:
18 virtual ~Slide() {} 19 virtual ~Slide() {}
19 20
20 virtual void draw(SkCanvas* canvas) = 0; 21 virtual void draw(SkCanvas* canvas) = 0;
22 virtual bool animate(const SkAnimTimer&) { return false; }
23 virtual void load() {}
24 virtual void unload() {}
25
21 SkString getName() { return fName; } 26 SkString getName() { return fName; }
22 27
23 protected: 28 protected:
24 SkString fName; 29 SkString fName;
25 }; 30 };
26 31
27 32
28 #endif 33 #endif
OLDNEW
« no previous file with comments | « tools/vulkan/viewer/SKPSlide.cpp ('k') | tools/vulkan/viewer/VulkanViewer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698