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> | |
10 #include <vector> | 9 #include <vector> |
11 | 10 |
12 #include "base/callback.h" | 11 #include "base/callback.h" |
13 #include "base/containers/flat_map.h" | 12 #include "base/containers/flat_map.h" |
14 #include "base/macros.h" | 13 #include "base/macros.h" |
15 #include "cc/base/filter_operations.h" | 14 #include "cc/base/filter_operations.h" |
16 #include "cc/cc_export.h" | 15 #include "cc/cc_export.h" |
17 #include "cc/output/ca_layer_overlay.h" | 16 #include "cc/output/ca_layer_overlay.h" |
18 #include "cc/output/dc_layer_overlay.h" | 17 #include "cc/output/dc_layer_overlay.h" |
19 #include "cc/output/overlay_processor.h" | 18 #include "cc/output/overlay_processor.h" |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 gfx::ColorSpace reshape_device_color_space_; | 251 gfx::ColorSpace reshape_device_color_space_; |
253 bool reshape_has_alpha_ = false; | 252 bool reshape_has_alpha_ = false; |
254 bool reshape_use_stencil_ = false; | 253 bool reshape_use_stencil_ = false; |
255 | 254 |
256 DISALLOW_COPY_AND_ASSIGN(DirectRenderer); | 255 DISALLOW_COPY_AND_ASSIGN(DirectRenderer); |
257 }; | 256 }; |
258 | 257 |
259 } // namespace cc | 258 } // namespace cc |
260 | 259 |
261 #endif // CC_OUTPUT_DIRECT_RENDERER_H_ | 260 #endif // CC_OUTPUT_DIRECT_RENDERER_H_ |
OLD | NEW |