| Index: content/public/common/content_switches.cc
|
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
|
| index 19c602bac03ec96ae03b5f40658dd90dc7535138..58d787091a0dcddcc539ebdc4cad3325d88ecfd2 100644
|
| --- a/content/public/common/content_switches.cc
|
| +++ b/content/public/common/content_switches.cc
|
| @@ -210,6 +210,11 @@ const char kDisableGpuProcessPrelaunch[] = "disable-gpu-process-prelaunch";
|
| // Overrides the kEnableGpuRasterization and kForceGpuRasterization flags.
|
| const char kDisableGpuRasterization[] = "disable-gpu-rasterization";
|
|
|
| +// When using CPU rasterizing disable low resolution tiling. This uses
|
| +// less power, particularly during animations, but more white may be seen
|
| +// during fast scrolling especially on slower devices.
|
| +const char kDisableLowResTiling[] = "disable-low-res-tiling";
|
| +
|
| // Disable the GPU process sandbox.
|
| const char kDisableGpuSandbox[] = "disable-gpu-sandbox";
|
|
|
| @@ -468,6 +473,10 @@ const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing";
|
| // impl-side painting.
|
| const char kEnableGpuRasterization[] = "enable-gpu-rasterization";
|
|
|
| +// When using CPU rasterizing generate low resolution tiling. Low res
|
| +// tiles may be displayed during fast scrolls especially on slower devices.
|
| +const char kEnableLowResTiling[] = "enable-low-res-tiling";
|
| +
|
| // See comment for kEnableCompositingForFixedPosition.
|
| const char kEnableHighDpiCompositingForFixedPosition[] =
|
| "enable-high-dpi-fixed-position-compositing";
|
|
|