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

Side by Side Diff: ppapi/cpp/paint_manager.cc

Issue 6085009: Add an instance parameter to var objects, audio, and the 2D API. This replace... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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
« no previous file with comments | « ppapi/cpp/image_data.cc ('k') | ppapi/cpp/var.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « ppapi/cpp/image_data.cc ('k') | ppapi/cpp/var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698