| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ContextProvider* context_provider, |
| 56 size_t num_raster_threads, | |
| 57 RenderingStatsInstrumentation* rendering_stats_instrumentation, | 56 RenderingStatsInstrumentation* rendering_stats_instrumentation, |
| 58 bool use_map_image, | 57 bool use_map_image, |
| 59 size_t max_transfer_buffer_usage_bytes, | 58 size_t max_transfer_buffer_usage_bytes, |
| 60 size_t max_raster_usage_bytes, | 59 size_t max_raster_usage_bytes, |
| 61 GLenum map_image_texture_target); | 60 GLenum map_image_texture_target); |
| 62 virtual ~TileManager(); | 61 virtual ~TileManager(); |
| 63 | 62 |
| 64 void ManageTiles(const GlobalStateThatImpactsTilePriority& state); | 63 void ManageTiles(const GlobalStateThatImpactsTilePriority& state); |
| 65 | 64 |
| 66 // Returns true when visible tiles have been initialized. | 65 // Returns true when visible tiles have been initialized. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 global_state_.memory_limit_in_bytes, | 113 global_state_.memory_limit_in_bytes, |
| 115 global_state_.unused_memory_limit_in_bytes, | 114 global_state_.unused_memory_limit_in_bytes, |
| 116 global_state_.num_resources_limit); | 115 global_state_.num_resources_limit); |
| 117 } | 116 } |
| 118 } | 117 } |
| 119 | 118 |
| 120 protected: | 119 protected: |
| 121 TileManager(TileManagerClient* client, | 120 TileManager(TileManagerClient* client, |
| 122 ResourceProvider* resource_provider, | 121 ResourceProvider* resource_provider, |
| 123 scoped_ptr<RasterWorkerPool> raster_worker_pool, | 122 scoped_ptr<RasterWorkerPool> raster_worker_pool, |
| 124 size_t num_raster_threads, | |
| 125 size_t max_raster_usage_bytes, | 123 size_t max_raster_usage_bytes, |
| 126 RenderingStatsInstrumentation* rendering_stats_instrumentation); | 124 RenderingStatsInstrumentation* rendering_stats_instrumentation); |
| 127 | 125 |
| 128 // Methods called by Tile | 126 // Methods called by Tile |
| 129 friend class Tile; | 127 friend class Tile; |
| 130 void DidChangeTilePriority(Tile* tile); | 128 void DidChangeTilePriority(Tile* tile); |
| 131 | 129 |
| 132 void CleanUpReleasedTiles(); | 130 void CleanUpReleasedTiles(); |
| 133 | 131 |
| 134 // Overriden from RefCountedManager<Tile>: | 132 // Overriden from RefCountedManager<Tile>: |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 RasterTaskCompletionStats update_visible_tiles_stats_; | 215 RasterTaskCompletionStats update_visible_tiles_stats_; |
| 218 | 216 |
| 219 std::vector<Tile*> released_tiles_; | 217 std::vector<Tile*> released_tiles_; |
| 220 | 218 |
| 221 DISALLOW_COPY_AND_ASSIGN(TileManager); | 219 DISALLOW_COPY_AND_ASSIGN(TileManager); |
| 222 }; | 220 }; |
| 223 | 221 |
| 224 } // namespace cc | 222 } // namespace cc |
| 225 | 223 |
| 226 #endif // CC_RESOURCES_TILE_MANAGER_H_ | 224 #endif // CC_RESOURCES_TILE_MANAGER_H_ |
| OLD | NEW |