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

Unified Diff: trunk/src/content/common/gpu/image_transport_surface.cc

Issue 83173010: Revert 236150 "Disable Vsync when Aero Glass is enabled." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/content/common/gpu/image_transport_surface.cc
===================================================================
--- trunk/src/content/common/gpu/image_transport_surface.cc (revision 236879)
+++ trunk/src/content/common/gpu/image_transport_surface.cc (working copy)
@@ -19,10 +19,6 @@
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_switches.h"
-#if defined(OS_WIN)
-#include "ui/base/win/shell.h"
-#endif
-
namespace content {
ImageTransportSurface::ImageTransportSurface() {}
@@ -168,14 +164,6 @@
}
void ImageTransportHelper::SetSwapInterval(gfx::GLContext* context) {
-#if defined(OS_WIN)
- // If Aero Glass is enabled, then the renderer will handle ratelimiting and
- // there's no tearing, so waiting for vsync is unnecessary.
- if (ui::win::IsAeroGlassEnabled()) {
- context->SetSwapInterval(0);
- return;
- }
-#endif
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDisableGpuVsync))
context->SetSwapInterval(0);
else
« 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