vote up 5 vote down star

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?

flag

3 Answers

vote up 2 vote down check

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!

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

The build-in remote desktop works. (You don't have to do anything special)

But it is extremely slow, because when in doubt, it just sends the contents of a window as a bitmap.

link|flag
It doesn't work. I'm on Win XP pro. What are you using? – Agnel Kurian Nov 7 '08 at 15:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.