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

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

Issue 16337012: Smallest possible desktop application that uses Skia to render stuff. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Refactored into BaseExample class and a HelloSkia subclass 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 #ifndef HelloSkia_DEFINED
sglez 2013/06/05 16:15:32 Forgot to add copyright header comment
2 #define HelloSkia_DEFINED
3
4 #include "BaseExample.h"
5
6 class HelloSkia : public BaseExample {
7 public:
8 HelloSkia(void* hWnd, int argc, char** argv);
9 protected:
10 virtual void draw(SkCanvas* canvas) SK_OVERRIDE;
11 private:
12 SkScalar fRotationAngle;
13 SkColor fBGColor;
14 typedef BaseExample INHERITED;
15 };
16
17 #endif
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698