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

Side by Side Diff: content/browser/compositor/browser_compositor_output_surface.cc

Issue 2776923003: cc: Partial draw without partial swap support. (Closed)
Patch Set: avoid BufferQueue::RecreateBuffer changes Created 3 years, 8 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/compositor/browser_compositor_output_surface.h" 5 #include "content/browser/compositor/browser_compositor_output_surface.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const { 68 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const {
69 return overlay_candidate_validator_.get(); 69 return overlay_candidate_validator_.get();
70 } 70 }
71 71
72 bool BrowserCompositorOutputSurface::HasExternalStencilTest() const { 72 bool BrowserCompositorOutputSurface::HasExternalStencilTest() const {
73 return false; 73 return false;
74 } 74 }
75 75
76 void BrowserCompositorOutputSurface::ApplyExternalStencil() {} 76 void BrowserCompositorOutputSurface::ApplyExternalStencil() {}
77 77
78 bool BrowserCompositorOutputSurface::CanPartialDraw(const gfx::Rect& damage) {
79 return false;
80 }
81
78 } // namespace content 82 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698