OLD | NEW |
---|---|
(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 | |
OLD | NEW |