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

Side by Side Diff: cc/layer_tree_impl.cc

Issue 12217102: cc: Avoid power of two textures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Lower-case vendor. Created 7 years, 10 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 unified diff | Download patch
« no previous file with comments | « cc/layer_tree_impl.h ('k') | cc/picture_layer_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 #include "cc/layer_tree_impl.h" 5 #include "cc/layer_tree_impl.h"
6 6
7 #include "base/debug/trace_event.h" 7 #include "base/debug/trace_event.h"
8 #include "cc/heads_up_display_layer_impl.h" 8 #include "cc/heads_up_display_layer_impl.h"
9 #include "cc/layer_tree_host_common.h" 9 #include "cc/layer_tree_host_common.h"
10 #include "cc/layer_tree_host_impl.h" 10 #include "cc/layer_tree_host_impl.h"
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 } 347 }
348 348
349 Proxy* LayerTreeImpl::proxy() const { 349 Proxy* LayerTreeImpl::proxy() const {
350 return layer_tree_host_impl_->proxy(); 350 return layer_tree_host_impl_->proxy();
351 } 351 }
352 352
353 const LayerTreeSettings& LayerTreeImpl::settings() const { 353 const LayerTreeSettings& LayerTreeImpl::settings() const {
354 return layer_tree_host_impl_->settings(); 354 return layer_tree_host_impl_->settings();
355 } 355 }
356 356
357 const RendererCapabilities& LayerTreeImpl::rendererCapabilities() const {
358 return layer_tree_host_impl_->rendererCapabilities();
359 }
360
357 OutputSurface* LayerTreeImpl::output_surface() const { 361 OutputSurface* LayerTreeImpl::output_surface() const {
358 return layer_tree_host_impl_->outputSurface(); 362 return layer_tree_host_impl_->outputSurface();
359 } 363 }
360 364
361 ResourceProvider* LayerTreeImpl::resource_provider() const { 365 ResourceProvider* LayerTreeImpl::resource_provider() const {
362 return layer_tree_host_impl_->resourceProvider(); 366 return layer_tree_host_impl_->resourceProvider();
363 } 367 }
364 368
365 TileManager* LayerTreeImpl::tile_manager() const { 369 TileManager* LayerTreeImpl::tile_manager() const {
366 return layer_tree_host_impl_->tileManager(); 370 return layer_tree_host_impl_->tileManager();
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 446
443 DebugRectHistory* LayerTreeImpl::debug_rect_history() const { 447 DebugRectHistory* LayerTreeImpl::debug_rect_history() const {
444 return layer_tree_host_impl_->debugRectHistory(); 448 return layer_tree_host_impl_->debugRectHistory();
445 } 449 }
446 450
447 AnimationRegistrar* LayerTreeImpl::animationRegistrar() const { 451 AnimationRegistrar* LayerTreeImpl::animationRegistrar() const {
448 return layer_tree_host_impl_->animationRegistrar(); 452 return layer_tree_host_impl_->animationRegistrar();
449 } 453 }
450 454
451 } // namespace cc 455 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layer_tree_impl.h ('k') | cc/picture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698