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

Side by Side Diff: cc/output/overlay_strategy_underlay.cc

Issue 2693023002: Use SwapBuffersWithBounds on Chromecast (Closed)
Patch Set: danakj nits Created 3 years, 9 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
« no previous file with comments | « cc/output/overlay_strategy_underlay.h ('k') | cc/output/overlay_strategy_underlay_cast.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "cc/output/overlay_strategy_underlay.h" 5 #include "cc/output/overlay_strategy_underlay.h"
6 6
7 #include "cc/output/overlay_candidate_validator.h" 7 #include "cc/output/overlay_candidate_validator.h"
8 #include "cc/quads/draw_quad.h" 8 #include "cc/quads/draw_quad.h"
9 #include "cc/quads/solid_color_draw_quad.h" 9 #include "cc/quads/solid_color_draw_quad.h"
10 10
11 namespace cc { 11 namespace cc {
12 12
13 OverlayStrategyUnderlay::OverlayStrategyUnderlay( 13 OverlayStrategyUnderlay::OverlayStrategyUnderlay(
14 OverlayCandidateValidator* capability_checker) 14 OverlayCandidateValidator* capability_checker)
15 : capability_checker_(capability_checker) { 15 : capability_checker_(capability_checker) {
16 DCHECK(capability_checker); 16 DCHECK(capability_checker);
17 } 17 }
18 18
19 OverlayStrategyUnderlay::~OverlayStrategyUnderlay() {} 19 OverlayStrategyUnderlay::~OverlayStrategyUnderlay() {}
20 20
21 bool OverlayStrategyUnderlay::Attempt(ResourceProvider* resource_provider, 21 bool OverlayStrategyUnderlay::Attempt(ResourceProvider* resource_provider,
22 RenderPass* render_pass, 22 RenderPass* render_pass,
23 OverlayCandidateList* candidate_list) { 23 OverlayCandidateList* candidate_list,
24 std::vector<gfx::Rect>* content_bounds) {
24 QuadList& quad_list = render_pass->quad_list; 25 QuadList& quad_list = render_pass->quad_list;
25 for (auto it = quad_list.begin(); it != quad_list.end(); ++it) { 26 for (auto it = quad_list.begin(); it != quad_list.end(); ++it) {
26 OverlayCandidate candidate; 27 OverlayCandidate candidate;
27 if (!OverlayCandidate::FromDrawQuad(resource_provider, *it, &candidate)) 28 if (!OverlayCandidate::FromDrawQuad(resource_provider, *it, &candidate))
28 continue; 29 continue;
29 30
30 // Add the overlay. 31 // Add the overlay.
31 OverlayCandidateList new_candidate_list = *candidate_list; 32 OverlayCandidateList new_candidate_list = *candidate_list;
32 new_candidate_list.push_back(candidate); 33 new_candidate_list.push_back(candidate);
33 new_candidate_list.back().plane_z_order = -1; 34 new_candidate_list.back().plane_z_order = -1;
(...skipping 26 matching lines...) Expand all
60 candidate_list->promotion_hint_info_map_.insert( 61 candidate_list->promotion_hint_info_map_.insert(
61 new_candidate_list.promotion_hint_info_map_.begin(), 62 new_candidate_list.promotion_hint_info_map_.begin(),
62 new_candidate_list.promotion_hint_info_map_.end()); 63 new_candidate_list.promotion_hint_info_map_.end());
63 } 64 }
64 } 65 }
65 66
66 return false; 67 return false;
67 } 68 }
68 69
69 } // namespace cc 70 } // namespace cc
OLDNEW
« no previous file with comments | « cc/output/overlay_strategy_underlay.h ('k') | cc/output/overlay_strategy_underlay_cast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698