http://bugs.winehq.org/show_bug.cgi?id=59824 --- Comment #2 from Stian Low <wineryyyyy@gmail.com> --- (In reply to ilian.imc from comment #0)
- **Wine version:** wine-staging 11.10 - **DXVK:** v2.3.1
Wine considers DXVK 3rd-party and prefers tests without it to reduce false bug reports.
2. Copy `UIAnimation.dll` from a Windows installation into the Wine prefix (`drive_c/windows/system32/`) and set as native, builtin. Without it the app displays "This application requires Windows 10 or later" and refuses to start. This is consistent with `cclgui.dll` using WAM COM class presence as
Maybe just launching app from install directory works without manual copy to system32 and just setting as native?
0208:fixme:dcomp:visual_SetEffect ... stub!
wine-staging-11.10 seems to have removed the FIXME stub so despite LLM claiming to use staging 11.10 it does not seem to match my human eyes: ./patches/dcomp-DCompositionCreateDevice2/0039-dcomp-Implement-some-visual-methods.patch:409 @@ -136,15 +147,33 @@ static HRESULT STDMETHODCALLTYPE visual_SetEffect(IDCompositionVisualUnknown *if static HRESULT STDMETHODCALLTYPE visual_SetBitmapInterpolationMode(IDCompositionVisualUnknown *iface, enum DCOMPOSITION_BITMAP_INTERPOLATION_MODE interpolation_mode) { - FIXME("iface %p, interpolation_mode %d stub!\n", iface, interpolation_mode); - return E_NOTIMPL; + struct composition_visual *visual = impl_from_IDCompositionVisualUnknown(iface); + + TRACE("iface %p, interpolation_mode %d.\n", iface, interpolation_mode); + + if (interpolation_mode != DCOMPOSITION_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR + && interpolation_mode != DCOMPOSITION_BITMAP_INTERPOLATION_MODE_LINEAR + && interpolation_mode != DCOMPOSITION_BITMAP_INTERPOLATION_MODE_INHERIT) + return E_INVALIDARG; + + visual->interpolation_mode = interpolation_mode; + return S_OK; Bug priority should probably be considered low until signs of intelligence/human life. -- 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.