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

Side by Side Diff: experimental/SkiaExamples/Presentation.h

Issue 16337012: Smallest possible desktop application that uses Skia to render stuff. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Presentation example Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright 2013 Google Inc.
3 *
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 *
8 */
9
10 #ifndef SkPresentation_DEFINED
11 #define SkPresentation_DEFINED
12
13 #include "BaseExample.h"
14
15 class SkPresentation : public BaseExample {
16 public:
17 SkPresentation(void* hWnd, int argc, char** argv);
18 protected:
19 virtual void draw(SkCanvas* canvas) SK_OVERRIDE;
20 virtual void onEvent(SkEvent* evt) SK_OVERRIDE;
21 private:
22 uint32_t slideIndex;
23 typedef BaseExample INHERITED;
24 };
25
26 #endif // SkPresentation_DEFINED
27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698