зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1596245 - Fix WebGPU device destruction r=jgilbert
Differential Revision: https://phabricator.services.mozilla.com/D53081 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
5af92f5f8a
Коммит
1554e99669
|
@ -24,7 +24,8 @@ Device::Device(Adapter* const aParent, RawId aId)
|
|||
}
|
||||
|
||||
Device::~Device() {
|
||||
if (mBridge->IsOpen()) {
|
||||
//TODO: figure out when `mBridge` could be `nullptr`
|
||||
if (mBridge && mBridge->IsOpen()) {
|
||||
mBridge->SendDeviceDestroy(mId);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче