Bug 1496430 - Check GL context for RenderCompositorANGLE. r=sotaro

MozReview-Commit-ID: 7ncgoJOpZs9

Differential Revision: https://phabricator.services.mozilla.com/D7804

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Matt Woodrow 2018-10-05 02:01:20 +00:00
Родитель 92eef97335
Коммит c6ebea64bf
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -111,7 +111,10 @@ RenderCompositorANGLE::Initialize()
if (!SutdownEGLLibraryIfNecessary()) {
return false;
}
RenderThread::Get()->SharedGL();
if (!RenderThread::Get()->SharedGL()) {
gfxCriticalNote << "[WR] failed to get shared GL context.";
return false;
}
mDevice = GetDeviceOfEGLDisplay();