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

Side by Side Diff: cc/layer_tree_host.h

Issue 11360093: Mark layers that can use LCD text based on layer transform and opacity. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed build Created 8 years 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
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 #ifndef CC_LAYER_TREE_HOST_H_ 5 #ifndef CC_LAYER_TREE_HOST_H_
6 #define CC_LAYER_TREE_HOST_H_ 6 #define CC_LAYER_TREE_HOST_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 bool acceleratePainting; 80 bool acceleratePainting;
81 bool implSidePainting; 81 bool implSidePainting;
82 bool renderVSyncEnabled; 82 bool renderVSyncEnabled;
83 bool perTilePaintingEnabled; 83 bool perTilePaintingEnabled;
84 bool partialSwapEnabled; 84 bool partialSwapEnabled;
85 bool acceleratedAnimationEnabled; 85 bool acceleratedAnimationEnabled;
86 bool pageScalePinchZoomEnabled; 86 bool pageScalePinchZoomEnabled;
87 bool backgroundColorInsteadOfCheckerboard; 87 bool backgroundColorInsteadOfCheckerboard;
88 bool showOverdrawInTracing; 88 bool showOverdrawInTracing;
89 bool canUseLCDText;
89 double refreshRate; 90 double refreshRate;
90 size_t maxPartialTextureUpdates; 91 size_t maxPartialTextureUpdates;
91 size_t numRasterThreads; 92 size_t numRasterThreads;
92 gfx::Size defaultTileSize; 93 gfx::Size defaultTileSize;
93 gfx::Size maxUntiledLayerSize; 94 gfx::Size maxUntiledLayerSize;
94 gfx::Size minimumOcclusionTrackingSize; 95 gfx::Size minimumOcclusionTrackingSize;
95 96
96 LayerTreeDebugState initialDebugState; 97 LayerTreeDebugState initialDebugState;
97 }; 98 };
98 99
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 size_t m_partialTextureUpdateRequests; 318 size_t m_partialTextureUpdateRequests;
318 319
319 static bool s_needsFilterContext; 320 static bool s_needsFilterContext;
320 321
321 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 322 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
322 }; 323 };
323 324
324 } // namespace cc 325 } // namespace cc
325 326
326 #endif // CC_LAYER_TREE_HOST_H_ 327 #endif // CC_LAYER_TREE_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698