OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium 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 #include "ppapi/cpp/paint_manager.h" | 5 #include "ppapi/cpp/paint_manager.h" |
6 | 6 |
7 #include "ppapi/c/pp_errors.h" | 7 #include "ppapi/c/pp_errors.h" |
8 #include "ppapi/cpp/instance.h" | 8 #include "ppapi/cpp/instance.h" |
9 #include "ppapi/cpp/logging.h" | 9 #include "ppapi/cpp/logging.h" |
10 #include "ppapi/cpp/module.h" | 10 #include "ppapi/cpp/module.h" |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 PP_DCHECK(!instance_ && !client_); // Can't initialize twice. | 49 PP_DCHECK(!instance_ && !client_); // Can't initialize twice. |
50 instance_ = instance; | 50 instance_ = instance; |
51 client_ = client; | 51 client_ = client; |
52 is_always_opaque_ = is_always_opaque; | 52 is_always_opaque_ = is_always_opaque; |
53 } | 53 } |
54 | 54 |
55 void PaintManager::SetSize(const Size& new_size) { | 55 void PaintManager::SetSize(const Size& new_size) { |
56 if (new_size == graphics_.size()) | 56 if (new_size == graphics_.size()) |
57 return; | 57 return; |
58 | 58 |
59 graphics_ = Graphics2D(new_size, is_always_opaque_); | 59 graphics_ = Graphics2D(instance_, new_size, is_always_opaque_); |
60 if (graphics_.is_null()) | 60 if (graphics_.is_null()) |
61 return; | 61 return; |
62 instance_->BindGraphics(graphics_); | 62 instance_->BindGraphics(graphics_); |
63 | 63 |
64 manual_callback_pending_ = false; | 64 manual_callback_pending_ = false; |
65 flush_pending_ = false; | 65 flush_pending_ = false; |
66 callback_factory_.CancelAll(); | 66 callback_factory_.CancelAll(); |
67 | 67 |
68 Invalidate(); | 68 Invalidate(); |
69 } | 69 } |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 | 169 |
170 // Just because we have a manual callback doesn't mean there are actually any | 170 // Just because we have a manual callback doesn't mean there are actually any |
171 // invalid regions. Even though we only schedule this callback when something | 171 // invalid regions. Even though we only schedule this callback when something |
172 // is pending, a Flush callback could have come in before this callback was | 172 // is pending, a Flush callback could have come in before this callback was |
173 // executed and that could have cleared the queue. | 173 // executed and that could have cleared the queue. |
174 if (aggregator_.HasPendingUpdate() && !flush_pending_) | 174 if (aggregator_.HasPendingUpdate() && !flush_pending_) |
175 DoPaint(); | 175 DoPaint(); |
176 } | 176 } |
177 | 177 |
178 } // namespace pp | 178 } // namespace pp |
OLD | NEW |