OLD | NEW |
---|---|
(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 HelloSkia_DEFINED | |
11 #define HelloSkia_DEFINED | |
12 | |
13 #include "SkWindow.h" | |
14 | |
15 class HelloWindow : public SkOSWindow { | |
16 public: | |
17 HelloWindow(void* hWnd, int argc, char** argv); | |
18 | |
19 protected: | |
20 virtual void draw(SkCanvas* canvas); | |
21 | |
22 SkColor fBGColor; | |
23 private: | |
24 double fRotationAngle; | |
25 | |
26 typedef SkOSWindow INHERITED; | |
27 }; | |
28 #endif | |
caryclark
2013/06/03 19:02:01
Looks great. By the way, have you activated trybot
sglez
2013/06/03 20:24:08
I will try that, are the docs up-to-date?
caryclark
2013/06/04 11:48:12
Not sure -- bump Eric if they are not.
On 2013/06/
| |
OLD | NEW |