Hi Don, thanks for reaching out! Sorry that this change breaks your app.
I think what will work for you is if the child HWND in your app is converted to a layered window. Windows assigns a redirection bitmap to layered windows behind the scenes.
You should call `SetLayeredWindowAttributes(window, 0, 255, LWA_ALPHA)` on the child window to make it appear; the "bAlpha" parameter is the one which needs to be set to 255.
For example,
SetWindowLong(hwnd, GWL_EXSTYLE, style | WS_EX_LAYERED);
SetLayeredWindowAttributes(hwnd, 0, 255, LWA_ALPHA);
If your app can run chromium with flags, then as a very temporary solution you can also run chromium with --disable-features=RemoveRedirectionBitmap.