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

Unified Diff: content/browser/compositor/gpu_process_transport_factory.cc

Issue 2907753002: Limit D3D V-sync experiment to Win 8.1+ (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/ipc/service/image_transport_surface_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/compositor/gpu_process_transport_factory.cc
diff --git a/content/browser/compositor/gpu_process_transport_factory.cc b/content/browser/compositor/gpu_process_transport_factory.cc
index 409df107103e240691ea5fac8bcee2c367f07d17..1c2caa72fa1b8564bc281278c5de212cd3695932 100644
--- a/content/browser/compositor/gpu_process_transport_factory.cc
+++ b/content/browser/compositor/gpu_process_transport_factory.cc
@@ -116,9 +116,9 @@ constexpr uint32_t kDefaultClientId = 0u;
bool IsGpuVSyncSignalSupported() {
#if defined(OS_WIN)
- // TODO(stanisc): http://crbug.com/467617 Limit to Windows 8+ for now because
- // of locking issue caused by waiting for VSync on Win7.
- return base::win::GetVersion() >= base::win::VERSION_WIN8 &&
+ // TODO(stanisc): http://crbug.com/467617 Limit to Windows 8.1+ for now
+ // because of locking issue caused by waiting for VSync on Win7 and Win 8.0.
+ return base::win::GetVersion() >= base::win::VERSION_WIN8_1 &&
base::FeatureList::IsEnabled(features::kD3DVsync);
#else
return false;
« no previous file with comments | « no previous file | gpu/ipc/service/image_transport_surface_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698