зеркало из https://github.com/mozilla/gecko-dev.git
Bug 902528. Check we still have a render target in BeginFrame. r=Bas
This commit is contained in:
Родитель
8daad4b2a0
Коммит
a43564a445
|
@ -569,7 +569,9 @@ CompositorD3D11::BeginFrame(const Rect* aClipRectIn,
|
|||
{
|
||||
UpdateRenderTarget();
|
||||
|
||||
if (mSize.width == 0 || mSize.height == 0) {
|
||||
// Failed to create a render target.
|
||||
if (!mDefaultRT ||
|
||||
mSize.width == 0 || mSize.height == 0) {
|
||||
*aRenderBoundsOut = Rect();
|
||||
return;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче