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

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

Issue 1903253003: VulkanViewer on Android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp 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.h ('k') | tools/vulkan/viewer/VulkanViewer.cpp » ('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 "SkSize.h"
12 #include "SkString.h" 13 #include "SkString.h"
13 14
14 class SkCanvas; 15 class SkCanvas;
15 class SkAnimTimer; 16 class SkAnimTimer;
16 17
17 class Slide : public SkRefCnt { 18 class Slide : public SkRefCnt {
18 public: 19 public:
19 virtual ~Slide() {} 20 virtual ~Slide() {}
20 21
22 virtual SkISize getDimensions() const = 0;
23
21 virtual void draw(SkCanvas* canvas) = 0; 24 virtual void draw(SkCanvas* canvas) = 0;
22 virtual bool animate(const SkAnimTimer&) { return false; } 25 virtual bool animate(const SkAnimTimer&) { return false; }
23 virtual void load() {} 26 virtual void load() {}
24 virtual void unload() {} 27 virtual void unload() {}
25 28
26 SkString getName() { return fName; } 29 SkString getName() { return fName; }
27 30
28 protected: 31 protected:
29 SkString fName; 32 SkString fName;
30 }; 33 };
31 34
32 35
33 #endif 36 #endif
OLDNEW
« no previous file with comments | « tools/vulkan/viewer/SKPSlide.h ('k') | tools/vulkan/viewer/VulkanViewer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698