| OLD | NEW |
| 1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "cc/output/gl_renderer.h" | 5 #include "cc/output/gl_renderer.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/debug/trace_event.h" | |
| 14 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/trace_event/trace_event.h" |
| 15 #include "cc/base/math_util.h" | 15 #include "cc/base/math_util.h" |
| 16 #include "cc/layers/video_layer_impl.h" | 16 #include "cc/layers/video_layer_impl.h" |
| 17 #include "cc/output/compositor_frame.h" | 17 #include "cc/output/compositor_frame.h" |
| 18 #include "cc/output/compositor_frame_metadata.h" | 18 #include "cc/output/compositor_frame_metadata.h" |
| 19 #include "cc/output/context_provider.h" | 19 #include "cc/output/context_provider.h" |
| 20 #include "cc/output/copy_output_request.h" | 20 #include "cc/output/copy_output_request.h" |
| 21 #include "cc/output/geometry_binding.h" | 21 #include "cc/output/geometry_binding.h" |
| 22 #include "cc/output/gl_frame_data.h" | 22 #include "cc/output/gl_frame_data.h" |
| 23 #include "cc/output/output_surface.h" | 23 #include "cc/output/output_surface.h" |
| 24 #include "cc/output/render_surface_filters.h" | 24 #include "cc/output/render_surface_filters.h" |
| (...skipping 3267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3292 context_support_->ScheduleOverlayPlane( | 3292 context_support_->ScheduleOverlayPlane( |
| 3293 overlay.plane_z_order, | 3293 overlay.plane_z_order, |
| 3294 overlay.transform, | 3294 overlay.transform, |
| 3295 pending_overlay_resources_.back()->texture_id(), | 3295 pending_overlay_resources_.back()->texture_id(), |
| 3296 overlay.display_rect, | 3296 overlay.display_rect, |
| 3297 overlay.uv_rect); | 3297 overlay.uv_rect); |
| 3298 } | 3298 } |
| 3299 } | 3299 } |
| 3300 | 3300 |
| 3301 } // namespace cc | 3301 } // namespace cc |
| OLD | NEW |