Hi!
Could someone anwser my question, please? My program has one thread for the window's message loop and another for D3D12 rendering. Everything is fine, but the question is what window proc. should do with WM_PAINT? Currently the app has such fragment of code:
case WM_PAINT:
return 0;
Is there any better/more efficient way, or that is OK?