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

Unified Diff: content/common/gpu/client/command_buffer_proxy_impl.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/common/gpu/client/command_buffer_proxy_impl.cc
diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc
index 61f8922c567fd9edc5f4c31e8b7972f38751f74d..13f741daabe4d24fb92288e4def96e1dff765d5d 100644
--- a/content/common/gpu/client/command_buffer_proxy_impl.cc
+++ b/content/common/gpu/client/command_buffer_proxy_impl.cc
@@ -202,6 +202,11 @@ void CommandBufferProxyImpl::Flush(int32 put_offset) {
++flush_count_));
}
+void CommandBufferProxyImpl::SetLatencyInfo(
+ const cc::LatencyInfo& latency_info) {
piman 2013/04/03 18:05:09 You need to check for last_state_.error != gpu::er
+ Send(new GpuCommandBufferMsg_SetLatencyInfo(route_id_, latency_info));
+}
+
gpu::CommandBuffer::State CommandBufferProxyImpl::FlushSync(
int32 put_offset,
int32 last_known_get) {

Powered by Google App Engine
This is Rietveld 408576698