| Index: third_party/WebKit/public/platform/WebExternalTextureMailbox.h
|
| diff --git a/third_party/WebKit/public/platform/WebExternalTextureMailbox.h b/third_party/WebKit/public/platform/WebExternalTextureMailbox.h
|
| index f51d8e8d3b9194d6183aa8de655c107148948be8..7bc91af21ed5e3af19c3088a0993449c035a67e5 100644
|
| --- a/third_party/WebKit/public/platform/WebExternalTextureMailbox.h
|
| +++ b/third_party/WebKit/public/platform/WebExternalTextureMailbox.h
|
| @@ -35,16 +35,18 @@ namespace blink {
|
|
|
| struct WebExternalTextureMailbox {
|
| signed char name[64];
|
| - unsigned syncPoint;
|
| + signed char syncToken[24];
|
| + bool validSyncToken;
|
| bool allowOverlay;
|
| bool nearestNeighbor;
|
|
|
| WebExternalTextureMailbox()
|
| - : syncPoint(0)
|
| + : validSyncToken(false)
|
| , allowOverlay(false)
|
| , nearestNeighbor(false)
|
| {
|
| memset(name, 0, sizeof(name));
|
| + memset(syncToken, 0, sizeof(syncToken));
|
| }
|
| };
|
|
|
|
|