diff options
author | vmiura <vmiura@chromium.org> | 2015-02-17 14:00:18 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-17 22:01:05 +0000 |
commit | 96a23833e024783905297b60e7d86ca588ada45c (patch) | |
tree | bc52d38ade95cc16d902a010179aa3b09a09b8ed /content | |
parent | 958e9f8cbb1affe884fc7af34131ebc5451723f3 (diff) | |
download | chromium_src-96a23833e024783905297b60e7d86ca588ada45c.zip chromium_src-96a23833e024783905297b60e7d86ca588ada45c.tar.gz chromium_src-96a23833e024783905297b60e7d86ca588ada45c.tar.bz2 |
cc: Default threaded GPU rasterization to ON.
BUG=454500
Review URL: https://codereview.chromium.org/927463004
Cr-Commit-Position: refs/heads/master@{#316665}
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/gpu/compositor_util.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc index 9606eb5..c75571b 100644 --- a/content/browser/gpu/compositor_util.cc +++ b/content/browser/gpu/compositor_util.cc @@ -301,10 +301,8 @@ bool IsThreadedGpuRasterizationEnabled() { if (command_line.HasSwitch(switches::kDisableThreadedGpuRasterization)) return false; - if (command_line.HasSwitch(switches::kEnableThreadedGpuRasterization)) - return true; - return false; + return true; } bool UseSurfacesEnabled() { |