From 25af144e4ac4e8de6bf4d8ea5d960af06f534caf Mon Sep 17 00:00:00 2001 From: Paul Gofman Date: Wed, 19 Jun 2024 15:59:10 -0600 Subject: [PATCH] dcomp: HACK: Try to workaround Chromium race fixed by Chromium commit 1c13c9105b40e8. CW-Bug-Id: #23945 --- dlls/dcomp/device.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/dcomp/device.c b/dlls/dcomp/device.c index 2744d758e91..d0eb920968a 100644 --- a/dlls/dcomp/device.c +++ b/dlls/dcomp/device.c @@ -36,6 +36,9 @@ HRESULT WINAPI DCompositionCreateDevice2(IUnknown *rendering_device, REFIID iid, { FIXME("%p, %s, %p.\n", rendering_device, debugstr_guid(iid), device); + /* Try to workaround Chromium race fixed by Chromium commit 1c13c9105b40e83f87ebcad104fab57fcef43eb9. */ + Sleep(50); + return E_NOTIMPL; }