OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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/quads/render_pass.h" | 5 #include "cc/quads/render_pass.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/trace_event/trace_event_argument.h" | 9 #include "base/trace_event/trace_event_argument.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 this->id = id; | 173 this->id = id; |
174 this->output_rect = output_rect; | 174 this->output_rect = output_rect; |
175 this->damage_rect = damage_rect; | 175 this->damage_rect = damage_rect; |
176 this->transform_to_root_target = transform_to_root_target; | 176 this->transform_to_root_target = transform_to_root_target; |
177 this->has_transparent_background = has_transparent_background; | 177 this->has_transparent_background = has_transparent_background; |
178 | 178 |
179 DCHECK(quad_list.empty()); | 179 DCHECK(quad_list.empty()); |
180 DCHECK(shared_quad_state_list.empty()); | 180 DCHECK(shared_quad_state_list.empty()); |
181 } | 181 } |
182 | 182 |
183 void RenderPass::AsValueInto(base::debug::TracedValue* value) const { | 183 void RenderPass::AsValueInto(base::trace_event::TracedValue* value) const { |
184 MathUtil::AddToTracedValue("output_rect", output_rect, value); | 184 MathUtil::AddToTracedValue("output_rect", output_rect, value); |
185 MathUtil::AddToTracedValue("damage_rect", damage_rect, value); | 185 MathUtil::AddToTracedValue("damage_rect", damage_rect, value); |
186 | 186 |
187 value->SetBoolean("has_transparent_background", has_transparent_background); | 187 value->SetBoolean("has_transparent_background", has_transparent_background); |
188 value->SetInteger("copy_requests", copy_requests.size()); | 188 value->SetInteger("copy_requests", copy_requests.size()); |
189 | 189 |
190 value->BeginArray("shared_quad_state_list"); | 190 value->BeginArray("shared_quad_state_list"); |
191 for (const auto& shared_quad_state : shared_quad_state_list) { | 191 for (const auto& shared_quad_state : shared_quad_state_list) { |
192 value->BeginDictionary(); | 192 value->BeginDictionary(); |
193 shared_quad_state->AsValueInto(value); | 193 shared_quad_state->AsValueInto(value); |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 case DrawQuad::RENDER_PASS: | 263 case DrawQuad::RENDER_PASS: |
264 case DrawQuad::INVALID: | 264 case DrawQuad::INVALID: |
265 LOG(FATAL) << "Invalid DrawQuad material " << quad->material; | 265 LOG(FATAL) << "Invalid DrawQuad material " << quad->material; |
266 break; | 266 break; |
267 } | 267 } |
268 quad_list.back()->shared_quad_state = shared_quad_state; | 268 quad_list.back()->shared_quad_state = shared_quad_state; |
269 return quad_list.back(); | 269 return quad_list.back(); |
270 } | 270 } |
271 | 271 |
272 } // namespace cc | 272 } // namespace cc |
OLD | NEW |