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

Side by Side Diff: content/browser/gpu/compositor_util.cc

Issue 868123003: content: Enable one-copy tile texture update mechanism on MacOSX. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/gpu/compositor_util.h" 5 #include "content/browser/gpu/compositor_util.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/metrics/field_trial.h" 9 #include "base/metrics/field_trial.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 if (IsZeroCopyUploadEnabled()) 226 if (IsZeroCopyUploadEnabled())
227 return false; 227 return false;
228 228
229 const base::CommandLine& command_line = 229 const base::CommandLine& command_line =
230 *base::CommandLine::ForCurrentProcess(); 230 *base::CommandLine::ForCurrentProcess();
231 if (command_line.HasSwitch(switches::kEnableOneCopy)) 231 if (command_line.HasSwitch(switches::kEnableOneCopy))
232 return true; 232 return true;
233 if (command_line.HasSwitch(switches::kDisableOneCopy)) 233 if (command_line.HasSwitch(switches::kDisableOneCopy))
234 return false; 234 return false;
235 235
236 #if defined(OS_MACOSX) || defined(OS_ANDROID) 236 #if defined(OS_ANDROID)
237 return false; 237 return false;
238 #endif 238 #endif
239 return true; 239 return true;
240 } 240 }
241 241
242 bool IsZeroCopyUploadEnabled() { 242 bool IsZeroCopyUploadEnabled() {
243 const base::CommandLine& command_line = 243 const base::CommandLine& command_line =
244 *base::CommandLine::ForCurrentProcess(); 244 *base::CommandLine::ForCurrentProcess();
245 return command_line.HasSwitch(switches::kEnableZeroCopy); 245 return command_line.HasSwitch(switches::kEnableZeroCopy);
246 } 246 }
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 } 400 }
401 } 401 }
402 return problem_list; 402 return problem_list;
403 } 403 }
404 404
405 std::vector<std::string> GetDriverBugWorkarounds() { 405 std::vector<std::string> GetDriverBugWorkarounds() {
406 return GpuDataManagerImpl::GetInstance()->GetDriverBugWorkarounds(); 406 return GpuDataManagerImpl::GetInstance()->GetDriverBugWorkarounds();
407 } 407 }
408 408
409 } // namespace content 409 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698