https://bugs.winehq.org/show_bug.cgi?id=50177
Bug ID: 50177 Summary: War Thunder Launcher doesn't render anything, just spams d2d_geometry_sink_AddArc stubs Product: Wine Version: 5.22 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: d2d Assignee: wine-bugs@winehq.org Reporter: fzatlouk@redhat.com Distribution: ---
Created attachment 68699 --> https://bugs.winehq.org/attachment.cgi?id=68699 stdout
It appears WarThunder Launcher might need d2d_geometry_sink_AddArc .
It keeps spaming "0108:fixme:d2d:d2d_geometry_sink_AddArc iface 0B274638, arc 0031DB90 stub!" with stuck window with background from underneath it.
Tested Wine 5.19 - 5.22 in Windows XP and Windows 10 modes.
https://bugs.winehq.org/show_bug.cgi?id=50177
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download CC| |focht@gmx.net Status|UNCONFIRMED |NEW Ever confirmed|0 |1 URL| |https://web.archive.org/web | |/20201227151650/https://aws | |-yup-distr-02.gaijinent.com | |/wt_launcher_1.0.3.260.exe
--- Comment #1 from Anastasius Focht focht@gmx.net --- Hello folks,
confirming on behalf of OP and refining some fields.
Stable download via Internet Archive:
https://web.archive.org/web/20201227151650/https://aws-yup-distr-02.gaijinen...
Wine source:
https://source.winehq.org/git/wine.git/blob/e377786a71c3b6eab5bc11c0b1c9c7c3...
--- snip --- 3037 static void STDMETHODCALLTYPE d2d_geometry_sink_AddArc(ID2D1GeometrySink *iface, const D2D1_ARC_SEGMENT *arc) 3038 { 3039 struct d2d_geometry *geometry = impl_from_ID2D1GeometrySink(iface); 3040 3041 FIXME("iface %p, arc %p stub!\n", iface, arc); 3042 3043 if (geometry->u.path.state != D2D_GEOMETRY_STATE_FIGURE) 3044 { 3045 geometry->u.path.state = D2D_GEOMETRY_STATE_ERROR; 3046 return; 3047 } 3048 3049 if (!d2d_figure_add_vertex(&geometry->u.path.figures[geometry->u.path.figure_count - 1], arc->point)) 3050 { 3051 ERR("Failed to add vertex.\n"); 3052 return; 3053 } 3054 3055 ++geometry->u.path.segment_count; 3056 } --- snip ---
$ sha1sum wt_launcher_1.0.3.260.exe fbea19969955cb56fa3641c392843dc107941780 wt_launcher_1.0.3.260.exe
$ du -sh wt_launcher_1.0.3.260.exe 10M wt_launcher_1.0.3.260.exe
$ wine --version wine-6.0-rc4
Regards
https://bugs.winehq.org/show_bug.cgi?id=50177
igorpin@yandex.ru changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |igorpin@yandex.ru