OLD | NEW |
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 #ifndef CC_RESOURCES_TILING_SET_RASTER_QUEUE_ALL_H_ | 5 #ifndef CC_RESOURCES_TILING_SET_RASTER_QUEUE_ALL_H_ |
6 #define CC_RESOURCES_TILING_SET_RASTER_QUEUE_ALL_H_ | 6 #define CC_RESOURCES_TILING_SET_RASTER_QUEUE_ALL_H_ |
7 | 7 |
8 #include "base/containers/stack_container.h" | 8 #include "base/containers/stack_container.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
10 #include "cc/resources/picture_layer_tiling_set.h" | 10 #include "cc/resources/picture_layer_tiling_set.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 IteratorType iterator_type; | 192 IteratorType iterator_type; |
193 TilePriority::PriorityBin tile_type; | 193 TilePriority::PriorityBin tile_type; |
194 }; | 194 }; |
195 | 195 |
196 size_t current_stage_; | 196 size_t current_stage_; |
197 | 197 |
198 // The max number of stages is 6: 1 low res, 3 high res, and 2 active non | 198 // The max number of stages is 6: 1 low res, 3 high res, and 2 active non |
199 // ideal pending high res. | 199 // ideal pending high res. |
200 base::StackVector<IterationStage, 6> stages_; | 200 base::StackVector<IterationStage, 6> stages_; |
201 TilingIterator iterators_[NUM_ITERATORS]; | 201 TilingIterator iterators_[NUM_ITERATORS]; |
| 202 |
| 203 DISALLOW_COPY_AND_ASSIGN(TilingSetRasterQueueAll); |
202 }; | 204 }; |
203 | 205 |
204 } // namespace cc | 206 } // namespace cc |
205 | 207 |
206 #endif // CC_RESOURCES_TILING_SET_RASTER_QUEUE_ALL_H_ | 208 #endif // CC_RESOURCES_TILING_SET_RASTER_QUEUE_ALL_H_ |
OLD | NEW |