From 96a23833e024783905297b60e7d86ca588ada45c Mon Sep 17 00:00:00 2001 From: vmiura Date: Tue, 17 Feb 2015 14:00:18 -0800 Subject: cc: Default threaded GPU rasterization to ON. BUG=454500 Review URL: https://codereview.chromium.org/927463004 Cr-Commit-Position: refs/heads/master@{#316665} --- content/browser/gpu/compositor_util.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'content') 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() { -- cgit v1.1