 Chromium Code Reviews
 Chromium Code Reviews Issue 5317007:
  Add flow control between renderer and GPU processes, and, on Mac OS X,...  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/
    
  
    Issue 5317007:
  Add flow control between renderer and GPU processes, and, on Mac OS X,...  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/| Index: chrome/browser/renderer_host/accelerated_surface_container_manager_mac.cc | 
| =================================================================== | 
| --- chrome/browser/renderer_host/accelerated_surface_container_manager_mac.cc (revision 67289) | 
| +++ chrome/browser/renderer_host/accelerated_surface_container_manager_mac.cc (working copy) | 
| @@ -100,7 +100,7 @@ | 
| glColorMask(true, true, true, true); | 
| // Should match the clear color of RenderWidgetHostViewMac. | 
| - glClearColor(255, 255, 255, 255); | 
| + glClearColor(1.0f, 1.0f, 1.0f, 1.0f); | 
| 
Nico
2010/11/24 23:43:29
doh
 | 
| // TODO(thakis): Clearing the whole color buffer is wasteful, since most of | 
| // it is overwritten by the surface. | 
| glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); |