I'm working on an MDI app that might hold some a lot (>40) real-time (30 fps) updating graphs; each graph has to potentially render 3D geometry in it. I've tried using Direct2D for each window using SlimDX (on each one) but the performance drops really bad when adding more than 16 windows. Anybody has experience with this whose feedback might be useful?
- I'm currently using the D3D10/11 API which according to the docs has one swap chain per window. On the D3D9 docs, you can switch the window before you present and that's the recommended usage. Should I just try switching to D3D9 instead? Could it be a swap-chain switching issue?
- If it isn't a swap chain issue, would it be perhaps better for me to skip D2D and just manage my own vertex buffers and render using D3D?
Regards!