Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(494)

Unified Diff: cc/resources/tile_manager.cc

Issue 14409006: cc: Changes to use GL API for GpuMemoryBuffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glapi
Patch Set: Add internalformat parameter to CreateImageCHROMIUM in fake_web_graphics_context_3d to fix clang bu… Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/tile_manager.h ('k') | cc/test/fake_picture_layer_tiling_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile_manager.cc
diff --git a/cc/resources/tile_manager.cc b/cc/resources/tile_manager.cc
index 5c54b1e7ce86a7571235802fddce00f6062955c4..9a965a6703a9f8f6b338932b3f12e0a3f1f97de3 100644
--- a/cc/resources/tile_manager.cc
+++ b/cc/resources/tile_manager.cc
@@ -110,7 +110,8 @@ scoped_ptr<TileManager> TileManager::Create(
ResourceProvider* resource_provider,
size_t num_raster_threads,
bool use_color_estimator,
- RenderingStatsInstrumentation* rendering_stats_instrumentation) {
+ RenderingStatsInstrumentation* rendering_stats_instrumentation,
+ bool use_map_image) {
scoped_ptr<RasterWorkerPool> raster_worker_pool =
RasterWorkerPool::Create(num_raster_threads);
return make_scoped_ptr(new TileManager(client,
@@ -118,7 +119,8 @@ scoped_ptr<TileManager> TileManager::Create(
raster_worker_pool.Pass(),
num_raster_threads,
use_color_estimator,
- rendering_stats_instrumentation));
+ rendering_stats_instrumentation,
+ use_map_image));
}
TileManager::TileManager(
@@ -127,7 +129,8 @@ TileManager::TileManager(
scoped_ptr<RasterWorkerPool> raster_worker_pool,
size_t num_raster_threads,
bool use_color_estimator,
- RenderingStatsInstrumentation* rendering_stats_instrumentation)
+ RenderingStatsInstrumentation* rendering_stats_instrumentation,
+ bool use_map_image)
: client_(client),
resource_pool_(ResourcePool::Create(resource_provider)),
raster_worker_pool_(raster_worker_pool.Pass()),
« no previous file with comments | « cc/resources/tile_manager.h ('k') | cc/test/fake_picture_layer_tiling_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698