| 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_RESOURCES_TILE_MANAGER_H_ | 5 #ifndef CC_RESOURCES_TILE_MANAGER_H_ |
| 6 #define CC_RESOURCES_TILE_MANAGER_H_ | 6 #define CC_RESOURCES_TILE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // This class manages tiles, deciding which should get rasterized and which | 45 // This class manages tiles, deciding which should get rasterized and which |
| 46 // should no longer have any memory assigned to them. Tile objects are "owned" | 46 // should no longer have any memory assigned to them. Tile objects are "owned" |
| 47 // by layers; they automatically register with the manager when they are | 47 // by layers; they automatically register with the manager when they are |
| 48 // created, and unregister from the manager when they are deleted. | 48 // created, and unregister from the manager when they are deleted. |
| 49 class CC_EXPORT TileManager : public RasterWorkerPoolClient, | 49 class CC_EXPORT TileManager : public RasterWorkerPoolClient, |
| 50 public RefCountedManager<Tile> { | 50 public RefCountedManager<Tile> { |
| 51 public: | 51 public: |
| 52 static scoped_ptr<TileManager> Create( | 52 static scoped_ptr<TileManager> Create( |
| 53 TileManagerClient* client, | 53 TileManagerClient* client, |
| 54 ResourceProvider* resource_provider, | 54 ResourceProvider* resource_provider, |
| 55 ContextProvider* context_provider, |
| 55 size_t num_raster_threads, | 56 size_t num_raster_threads, |
| 56 RenderingStatsInstrumentation* rendering_stats_instrumentation, | 57 RenderingStatsInstrumentation* rendering_stats_instrumentation, |
| 57 bool use_map_image, | 58 bool use_map_image, |
| 58 size_t max_transfer_buffer_usage_bytes, | 59 size_t max_transfer_buffer_usage_bytes, |
| 59 size_t max_raster_usage_bytes, | 60 size_t max_raster_usage_bytes, |
| 60 GLenum map_image_texture_target); | 61 GLenum map_image_texture_target); |
| 61 virtual ~TileManager(); | 62 virtual ~TileManager(); |
| 62 | 63 |
| 63 void ManageTiles(const GlobalStateThatImpactsTilePriority& state); | 64 void ManageTiles(const GlobalStateThatImpactsTilePriority& state); |
| 64 | 65 |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 RasterTaskCompletionStats update_visible_tiles_stats_; | 217 RasterTaskCompletionStats update_visible_tiles_stats_; |
| 217 | 218 |
| 218 std::vector<Tile*> released_tiles_; | 219 std::vector<Tile*> released_tiles_; |
| 219 | 220 |
| 220 DISALLOW_COPY_AND_ASSIGN(TileManager); | 221 DISALLOW_COPY_AND_ASSIGN(TileManager); |
| 221 }; | 222 }; |
| 222 | 223 |
| 223 } // namespace cc | 224 } // namespace cc |
| 224 | 225 |
| 225 #endif // CC_RESOURCES_TILE_MANAGER_H_ | 226 #endif // CC_RESOURCES_TILE_MANAGER_H_ |
| OLD | NEW |