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

Unified Diff: content/renderer/gpu/mailbox_output_surface.cc

Issue 12614013: Plumb cc::LatencyInfo through command buffer and output surface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
Index: content/renderer/gpu/mailbox_output_surface.cc
diff --git a/content/renderer/gpu/mailbox_output_surface.cc b/content/renderer/gpu/mailbox_output_surface.cc
index 8d713c82fd7920c854b828a982255318ccfdce9f..89d43a13eed51a66706bf456b852cb6d2a1188b9 100644
--- a/content/renderer/gpu/mailbox_output_surface.cc
+++ b/content/renderer/gpu/mailbox_output_surface.cc
@@ -22,9 +22,11 @@ namespace content {
MailboxOutputSurface::MailboxOutputSurface(
int32 routing_id,
WebGraphicsContext3D* context3D,
+ CommandBufferProxyImpl* proxy,
cc::SoftwareOutputDevice* software_device)
: CompositorOutputSurface(routing_id,
context3D,
+ proxy,
piman 2013/03/19 04:30:29 Note: I don't think this will do what you want, si
software_device),
fbo_(0) {
}

Powered by Google App Engine
This is Rietveld 408576698