Bug 1089364. Avoid trying to resize the swap chain to a negative size. r=bas

This was causing GetBuffer to return DXGI_ERROR_INVALID_CALL

--HG--
extra : rebase_source : 49e62fd5dda1e28268218cffca4ea1ce7af1b6ea
This commit is contained in:
Jeff Muizelaar 2014-11-13 10:10:48 -05:00
Родитель 4ac6dd569f
Коммит e6fbe0d1fc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -935,7 +935,7 @@ CompositorD3D11::VerifyBufferSize()
if ((swapDesc.BufferDesc.Width == mSize.width &&
swapDesc.BufferDesc.Height == mSize.height) ||
mSize.width == 0 || mSize.height == 0) {
mSize.width <= 0 || mSize.height <= 0) {
return;
}