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

Side by Side Diff: cc/layer_tree_settings.cc

Issue 12210081: Paint low-res tiles without expensive filters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix filter() return value bug, change low-res scale 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/tile_manager.h » ('j') | cc/tile_manager.h » ('J')
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_settings.h" 5 #include "cc/layer_tree_settings.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 14 matching lines...) Expand all
25 , pageScalePinchZoomEnabled(false) 25 , pageScalePinchZoomEnabled(false)
26 , backgroundColorInsteadOfCheckerboard(false) 26 , backgroundColorInsteadOfCheckerboard(false)
27 , showOverdrawInTracing(false) 27 , showOverdrawInTracing(false)
28 , canUseLCDText(true) 28 , canUseLCDText(true)
29 , shouldClearRootRenderPass(true) 29 , shouldClearRootRenderPass(true)
30 , useLinearFadeScrollbarAnimator(false) 30 , useLinearFadeScrollbarAnimator(false)
31 , calculateTopControlsPosition(false) 31 , calculateTopControlsPosition(false)
32 , recordRenderingStats(false) 32 , recordRenderingStats(false)
33 , useCheapnessEstimator(false) 33 , useCheapnessEstimator(false)
34 , minimumContentsScale(0.0625f) 34 , minimumContentsScale(0.0625f)
35 , lowResContentsScaleFactor(0.125f) 35 , lowResContentsScaleFactor(0.25f)
36 , topControlsHeight(0.f) 36 , topControlsHeight(0.f)
37 , refreshRate(0) 37 , refreshRate(0)
38 , maxPartialTextureUpdates(std::numeric_limits<size_t>::max()) 38 , maxPartialTextureUpdates(std::numeric_limits<size_t>::max())
39 , numRasterThreads(1) 39 , numRasterThreads(1)
40 , defaultTileSize(gfx::Size(256, 256)) 40 , defaultTileSize(gfx::Size(256, 256))
41 , maxUntiledLayerSize(gfx::Size(512, 512)) 41 , maxUntiledLayerSize(gfx::Size(512, 512))
42 , minimumOcclusionTrackingSize(gfx::Size(160, 160)) 42 , minimumOcclusionTrackingSize(gfx::Size(160, 160))
43 { 43 {
44 // TODO(danakj): Move this to chromium when we don't go through the WebKit A PI anymore. 44 // TODO(danakj): Move this to chromium when we don't go through the WebKit A PI anymore.
45 compositorFrameMessage = CommandLine::ForCurrentProcess()->HasSwitch(cc::swi tches::kEnableCompositorFrameMessage); 45 compositorFrameMessage = CommandLine::ForCurrentProcess()->HasSwitch(cc::swi tches::kEnableCompositorFrameMessage);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 num_raster_threads; 93 num_raster_threads;
94 } 94 }
95 } 95 }
96 } 96 }
97 97
98 LayerTreeSettings::~LayerTreeSettings() 98 LayerTreeSettings::~LayerTreeSettings()
99 { 99 {
100 } 100 }
101 101
102 } // namespace cc 102 } // namespace cc
OLDNEW
« no previous file with comments | « no previous file | cc/tile_manager.h » ('j') | cc/tile_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698