Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Viewing DirectX application remotely

We're working on an application that displays information through a Direct3D visualisation. A late client request is the ability to view this application via some Remote Desktop solution.

Has anyone done anything similar? What options are available / unavailable? I'm thinking RDC, VNC, Citrix...

Any advice?

like image 922
moobaa Avatar asked Aug 31 '08 03:08

moobaa


2 Answers

I think you can still use all of the normal D3D tools, but you won't be able to render to a surface associated with the screen. You'll have to render to a DIB (or some such) and Blt it with GDI to a normal window HDC. RDC/VNC/Citrix should all work with this technique.

Performance will definitely suffer - but that's going to be the case over remote desktop anyway. In fact, if I were you, I would mock up a VERY simple prototype and demonstrate the performance before committing to it.

Good luck!

like image 67
Andy S Avatar answered Oct 29 '22 01:10

Andy S


I think Windows 7 has D3D remoting stuff - probably requires both client and server to be W7 though.

like image 28
Fowl Avatar answered Oct 29 '22 03:10

Fowl