Index: gpu/command_buffer/service/mailbox_manager.h |
diff --git a/gpu/command_buffer/service/mailbox_manager.h b/gpu/command_buffer/service/mailbox_manager.h |
index 2bfdb8957f5215c11774100debdc147cc20838ca..08a70ff21700343a8e3d04738f83be3fc71f8044 100644 |
--- a/gpu/command_buffer/service/mailbox_manager.h |
+++ b/gpu/command_buffer/service/mailbox_manager.h |
@@ -29,8 +29,12 @@ class GPU_EXPORT MailboxManager : public base::RefCounted<MailboxManager> { |
virtual bool UsesSync() = 0; |
// Used to synchronize texture state across share groups. |
- virtual void PushTextureUpdates(uint32 sync_point) = 0; |
- virtual void PullTextureUpdates(uint32 sync_point) = 0; |
+ virtual void PushTextureUpdates(int channel_client_id, |
+ uint32 route_id, |
+ uint32 release) = 0; |
piman
2015/09/10 23:55:32
nit: Maybe you can pass a const SyncToken& here an
David Yen
2015/09/23 18:30:34
Done.
|
+ virtual void PullTextureUpdates(int channel_client_id, |
+ uint32 route_id, |
+ uint32 release) = 0; |
// Destroy any mailbox that reference the given texture. |
virtual void TextureDeleted(Texture* texture) = 0; |