Bug 1740165 properly serialize mUseWebGPU r=sotaro

Differential Revision: https://phabricator.services.mozilla.com/D131448
This commit is contained in:
Dzmitry Malyshau 2021-11-18 17:13:10 +00:00
Родитель 61150f0593
Коммит 0f3e259c24
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -851,6 +851,7 @@ struct ParamTraits<mozilla::layers::CompositorOptions> {
WriteParam(aMsg, aParam.mUseSoftwareWebRender);
WriteParam(aMsg, aParam.mAllowSoftwareWebRenderD3D11);
WriteParam(aMsg, aParam.mAllowSoftwareWebRenderOGL);
WriteParam(aMsg, aParam.mUseWebGPU);
WriteParam(aMsg, aParam.mInitiallyPaused);
}
@ -860,6 +861,7 @@ struct ParamTraits<mozilla::layers::CompositorOptions> {
ReadParam(aMsg, aIter, &aResult->mUseSoftwareWebRender) &&
ReadParam(aMsg, aIter, &aResult->mAllowSoftwareWebRenderD3D11) &&
ReadParam(aMsg, aIter, &aResult->mAllowSoftwareWebRenderOGL) &&
ReadParam(aMsg, aIter, &aResult->mUseWebGPU) &&
ReadParam(aMsg, aIter, &aResult->mInitiallyPaused);
}
};