| Index: gpu/command_buffer/service/mailbox_synchronizer.cc
|
| diff --git a/gpu/command_buffer/service/mailbox_synchronizer.cc b/gpu/command_buffer/service/mailbox_synchronizer.cc
|
| index d25368ab09642ce0485747a7f314f02174ba24fe..eac31f95e48f94db8ad6fa9646bb9ce73b82aaec 100644
|
| --- a/gpu/command_buffer/service/mailbox_synchronizer.cc
|
| +++ b/gpu/command_buffer/service/mailbox_synchronizer.cc
|
| @@ -166,6 +166,11 @@ void MailboxSynchronizer::PushTextureUpdates(MailboxManager* manager) {
|
| UpdateTextureLocked(texture, texture_version);
|
|
|
| } else {
|
| + // Skip compositor resources/tile textures.
|
| + // TODO: Remove this, see crbug.com/399226.
|
| + if (texture->pool() == GL_TEXTURE_POOL_MANAGED_CHROMIUM)
|
| + continue;
|
| +
|
| linked_ptr<TextureGroup> group = make_linked_ptr(new TextureGroup(
|
| TextureDefinition(target_name.target, texture, 1, NULL)));
|
|
|
|
|