зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1364922 - Fix the error calculation of ExternalImageId. r=nical
MozReview-Commit-ID: 1u1fMxR4ugT
This commit is contained in:
Родитель
76b2651840
Коммит
43d1cc8378
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче