https://bugs.winehq.org/show_bug.cgi?id=47165
Nikolay Sivov bunglehead@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|d3d |d2d
--- Comment #38 from Nikolay Sivov bunglehead@gmail.com --- (In reply to Hajo Krabbenhöft from comment #34)
I've finally figured out what caused the black UI :)
Between CreateDCRenderTarget, SetTarget, BindDC, etc. and then finally BeginDraw, iTunes was modifying the bitmap selected into the HDC by blitting into it. Wine will overwrite that "output bitmap" inside EndDraw/Present with the current state inside the "internal bitmap" that Wine creates inside BindDC. That's how the background got lost but the text remained.
The fix in my proposed patch is rather primitive: Inside BeginDraw, I copy data between the two bitmaps in exactly the other direction as what EndDraw/Present does. That way, any data that was present in the bitmap selected by the bound HDC before BeginDraw will also be retained in the final image, if it was not painted over. And that means iTunes' text drawing logic will no longer replace the background with a black square :)
Hi, Hajo.
Sorry, I missed this report. What we currently do is copying from internal surface to target hdc, set with BindDC, only on EndDraw. Your patch "saves" target contents in internal surface on BeginDraw(). Just so that I understand better:
* <- application is blitting something to the hdc * BeginDraw(hdc) * <- application is trashing hdc with perhaps a clear? * EndDraw() -> surface contents are moved back to hdc bitmap
I think this should be easily testable, with a test that should go to d2d1/tests. I'll set component for now.