http://bugs.winehq.org/show_bug.cgi?id=60018 --- Comment #26 from Stian Low <wineryyyyy@gmail.com> --- (In reply to zlice from comment #25)
ok, went back to the start with the dmo errors.
Please retest with only this patch for a clean prefix which is all that was needed for my screenshots: - https://bugs.winehq.org/show_bug.cgi?id=50277#c46 diff --git a/dlls/dxgi/dxgi_main.c b/dlls/dxgi/dxgi_main.c index ca1fb525535..34719b1c5ef 100644 --- a/dlls/dxgi/dxgi_main.c +++ b/dlls/dxgi/dxgi_main.c @@ -147,6 +147,11 @@ HRESULT WINAPI DXGID3D10CreateDevice(HMODULE d3d10core, IDXGIFactory *factory, I if (flags) FIXME("Ignoring flags %#x.\n", flags); + if (flags & 0x800) + { + FIXME("failing for D3D11_CREATE_DEVICE_VIDEO_SUPPORT\n"); + return E_FAIL; + } if (TRACE_ON(dxgi)) dump_feature_levels(feature_levels, level_count); -- 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.