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

Unified Diff: gpu/command_buffer/service/mailbox_manager_impl.h

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some fixes Created 5 years, 3 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: gpu/command_buffer/service/mailbox_manager_impl.h
diff --git a/gpu/command_buffer/service/mailbox_manager_impl.h b/gpu/command_buffer/service/mailbox_manager_impl.h
index 5ea906e8f49400fca538a69397b44ee40b5cf591..d665e84d19fa7811e5514fa9efcfb94ab0108916 100644
--- a/gpu/command_buffer/service/mailbox_manager_impl.h
+++ b/gpu/command_buffer/service/mailbox_manager_impl.h
@@ -30,8 +30,12 @@ class GPU_EXPORT MailboxManagerImpl : public MailboxManager {
Texture* ConsumeTexture(const Mailbox& mailbox) override;
void ProduceTexture(const Mailbox& mailbox, Texture* texture) override;
bool UsesSync() override;
- void PushTextureUpdates(uint32 sync_point) override {}
- void PullTextureUpdates(uint32 sync_point) override {}
+ void PushTextureUpdates(int channel_client_id,
+ uint32 route_id,
+ uint32 release) override {}
+ void PullTextureUpdates(int channel_client_id,
+ uint32 route_id,
+ uint32 release) override {}
void TextureDeleted(Texture* texture) override;
protected:

Powered by Google App Engine
This is Rietveld 408576698