I have a very old graphic card that only supports shader model 2, but I need shader model 3 or up for the app I am developing. I tried to use a reference device but it seems to run very slowly, then I found some samples in C++ that allows me to change to a WARP device and the performance is good. I am using C# and I don't know how to create such type of device. So the question is: how do I create a WARP device in C#? Thanks in advance.
Tell me more
×
Game Development Stack Exchange is a question and answer site for
professional and independent game developers. It's 100% free, no registration required.
|
|
Managed DirectX is a D3D9 based API. WARP is a D3D10+ only technology. You might want to look at other managed DirectX wrappers that support D3D10+, these should be able to use WARP. |
|||
|
|
Your only option if you want to stick with MDX use to use Windows 8. In Windows 8 D3D9 falls back to WARP when there's no hardware device, so you can disable your graphics card in device manager to switch to WARP. |
|||
|
