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

Unified Diff: gpu/ipc/service/image_transport_surface_win.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 | « content/browser/compositor/gpu_process_transport_factory.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/service/image_transport_surface_win.cc
diff --git a/gpu/ipc/service/image_transport_surface_win.cc b/gpu/ipc/service/image_transport_surface_win.cc
index a13a2d558ee55e1af888fa3344cc174fe06582da..d4b5f75e6cb3c3e8ef1c0b2d19c7e559f89794a6 100644
--- a/gpu/ipc/service/image_transport_surface_win.cc
+++ b/gpu/ipc/service/image_transport_surface_win.cc
@@ -25,9 +25,9 @@ namespace gpu {
namespace {
bool IsGpuVSyncSignalSupported() {
- // 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);
}
« no previous file with comments | « content/browser/compositor/gpu_process_transport_factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698