| OLD | NEW |
| 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EXAMPLES_PONG_VIEW_H_ | 5 #ifndef EXAMPLES_PONG_VIEW_H_ |
| 6 #define EXAMPLES_PONG_VIEW_H_ | 6 #define EXAMPLES_PONG_VIEW_H_ |
| 7 | 7 |
| 8 #include "ppapi/cpp/rect.h" | 8 #include "ppapi/cpp/rect.h" |
| 9 | 9 |
| 10 namespace pp { | 10 namespace pp { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // Drawing stuff | 66 // Drawing stuff |
| 67 bool flush_pending_; | 67 bool flush_pending_; |
| 68 pp::Graphics2D* graphics_2d_context_; | 68 pp::Graphics2D* graphics_2d_context_; |
| 69 pp::ImageData* pixel_buffer_; | 69 pp::ImageData* pixel_buffer_; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 | 72 |
| 73 } // namespace pong | 73 } // namespace pong |
| 74 | 74 |
| 75 #endif // EXAMPLES_PONG_VIEW_H_ | 75 #endif // EXAMPLES_PONG_VIEW_H_ |
| OLD | NEW |