Bug 1364922 - Fix the error calculation of ExternalImageId. r=nical

MozReview-Commit-ID: 1u1fMxR4ugT
This commit is contained in:
JerryShih 2017-05-19 00:25:41 +08:00
Родитель 76b2651840
Коммит 43d1cc8378
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1177,7 +1177,7 @@ CompositorBridgeChild::GetNextExternalImageId()
MOZ_RELEASE_ASSERT(sNextID != UINT32_MAX);
uint64_t imageId = mNamespace;
imageId = imageId << 32 | sNextID;
imageId = (imageId << 32) | sNextID;
return Some(wr::ToExternalImageId(imageId));
}