http://bugs.winehq.org/show_bug.cgi?id=59631 --- Comment #26 from Stian Low <wineryyyyy@gmail.com> --- Confirmed that returning return E_NOTIMPL; for DCompositionCreateDevice2() fixes flickering for wine-staging-11.9. Done for all methods as ./dlls/dcomp/device.c DCompositionCreateDevice() DCompositionCreateDevice2() DCompositionCreateDevice3() Example: HRESULT WINAPI DCompositionCreateDevice2(IUnknown *rendering_device, REFIID iid, void **device) { FIXME("%p, %s, %p\n", rendering_device, debugstr_guid(iid), device); return E_NOTIMPL; if (!IsEqualIID(iid, &IID_IDCompositionDevice) && !IsEqualIID(iid, &IID_IDCompositionDesktopDevice)) return E_NOINTERFACE; return create_device(2, iid, device); } DCompositionCreateDevice patch will be included as part of ongoing tests for MR-10567 which may lead to some fixes to whatever causes flickering when DCompositionCreateDevice2() is supported. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.