| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef CC_OUTPUT_DIRECT_RENDERER_H_ | 5 #ifndef CC_OUTPUT_DIRECT_RENDERER_H_ |
| 6 #define CC_OUTPUT_DIRECT_RENDERER_H_ | 6 #define CC_OUTPUT_DIRECT_RENDERER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <unordered_map> | 9 #include <unordered_map> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "cc/base/cc_export.h" | 14 #include "cc/cc_export.h" |
| 15 #include "cc/output/ca_layer_overlay.h" | 15 #include "cc/output/ca_layer_overlay.h" |
| 16 #include "cc/output/dc_layer_overlay.h" | 16 #include "cc/output/dc_layer_overlay.h" |
| 17 #include "cc/output/filter_operations.h" | |
| 18 #include "cc/output/overlay_processor.h" | 17 #include "cc/output/overlay_processor.h" |
| 18 #include "cc/paint/filter_operations.h" |
| 19 #include "cc/quads/tile_draw_quad.h" | 19 #include "cc/quads/tile_draw_quad.h" |
| 20 #include "cc/resources/resource_provider.h" | 20 #include "cc/resources/resource_provider.h" |
| 21 #include "gpu/command_buffer/common/texture_in_use_response.h" | 21 #include "gpu/command_buffer/common/texture_in_use_response.h" |
| 22 #include "ui/events/latency_info.h" | 22 #include "ui/events/latency_info.h" |
| 23 #include "ui/gfx/geometry/quad_f.h" | 23 #include "ui/gfx/geometry/quad_f.h" |
| 24 #include "ui/gfx/geometry/rect.h" | 24 #include "ui/gfx/geometry/rect.h" |
| 25 | 25 |
| 26 namespace gfx { | 26 namespace gfx { |
| 27 class ColorSpace; | 27 class ColorSpace; |
| 28 } | 28 } |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 gfx::ColorSpace reshape_device_color_space_; | 237 gfx::ColorSpace reshape_device_color_space_; |
| 238 bool reshape_has_alpha_ = false; | 238 bool reshape_has_alpha_ = false; |
| 239 bool reshape_use_stencil_ = false; | 239 bool reshape_use_stencil_ = false; |
| 240 | 240 |
| 241 DISALLOW_COPY_AND_ASSIGN(DirectRenderer); | 241 DISALLOW_COPY_AND_ASSIGN(DirectRenderer); |
| 242 }; | 242 }; |
| 243 | 243 |
| 244 } // namespace cc | 244 } // namespace cc |
| 245 | 245 |
| 246 #endif // CC_OUTPUT_DIRECT_RENDERER_H_ | 246 #endif // CC_OUTPUT_DIRECT_RENDERER_H_ |
| OLD | NEW |