From a5991e6be777312bfec250f316d2025a8b5157a7 Mon Sep 17 00:00:00 2001 From: Bas Schouten Date: Sun, 22 Feb 2015 22:52:47 +0000 Subject: [PATCH] Bug 1131370: Give content side more time to finish its copy. r=jrmuizel --- gfx/layers/d3d11/TextureD3D11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/layers/d3d11/TextureD3D11.cpp b/gfx/layers/d3d11/TextureD3D11.cpp index 555168b760c..1a18fd4bdff 100644 --- a/gfx/layers/d3d11/TextureD3D11.cpp +++ b/gfx/layers/d3d11/TextureD3D11.cpp @@ -825,7 +825,7 @@ SyncObjectD3D11::FinalizeFrame() if (mD3D10SyncedTextures.size()) { RefPtr mutex; hr = mD3D10Texture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex)); - hr = mutex->AcquireSync(0, 10000); + hr = mutex->AcquireSync(0, 20000); if (hr == WAIT_TIMEOUT) { MOZ_CRASH();