| Index: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
|
| index c3f6af8b5a34f472005cbf125d6c804504842e59..93f225da363caac81325f908426491f1afbf46b0 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
|
| @@ -527,8 +527,8 @@ void Canvas2DLayerBridge::mailboxReleased(const WebExternalTextureMailbox& mailb
|
| if (!contextLost) {
|
| // Invalidate texture state in case the compositor altered it since the copy-on-write.
|
| if (releasedMailboxInfo->m_image) {
|
| - if (mailbox.syncPoint) {
|
| - context()->waitSyncPoint(mailbox.syncPoint);
|
| + if (mailbox.validSyncToken) {
|
| + context()->waitSyncToken(mailbox.syncToken);
|
| }
|
| GrTexture* texture = releasedMailboxInfo->m_image->getTexture();
|
| if (texture) {
|
|
|