[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [RFC] Xen Virtual Framebuffer
On 12/19/05, Jacob Gorm Hansen <jacobg@xxxxxxx> wrote: > On 12/16/05, Jon Smirl <jonsmirl@xxxxxxxxx> wrote: > > On 12/16/05, Jacob Gorm Hansen <jacobg@xxxxxxx> wrote: > > > On 12/11/05, Jon Smirl <jonsmirl@xxxxxxxxx> wrote: > > > > > > > You don't have to run the X server in dom0. You can run it in any > > > > domain that has sole control of the graphics hardware. The core > > > > problem is that only one domain can have control of the video > > > > hardware, there is no realistic way to virtualize a 3D engine. > > > > > > Even if it is impossible, I am currently attempting to do just that. > > > At http://www.diku.dk/~jacobg/gfx you can see a screen shot of 3 Xen > > > VM's displaying hardware-accelerated OpenGL to a shared server in > > > dom0. > > > > You can virtualize a single vendor's card. You can't really virtualize > > 3D in general because the cards are so different, there is no common > > 3D interface to virtualize. If you are going to design a common > > virtual 3D interface you might as well use the exiting OpenGL/GLX > > protocol rather than design something new. You'll find that GLX is > > more communications efficient than virtualizing at the low level. > > My software so far runs on top of pure OpenGL, though this far I have > only gotten the ATI drivers running under Xen (mostly a case of > changing virt_to_phys() into virt_to_bus() a few random places in the > open source wrapper). Are you aware of the EGL API proposal? http://www.freedesktop.org/wiki/EGL There has also been a lot of discussion around writing an new display server centered around OpenGL instead of X. It is discussed at the bottom of this article: http://www.freedesktop.org/~jonsmirl/graphics.html A standalone X server could still use the GLX protocol. If you look at the mesa source code you will find that it is all automatically generated. It is certainly possible to build a new OpenGL only server that reuses the GLX code. > > Though I was inspired by GLX I have opted not to base my work on it, > because I would prefer not to rely on anything X11-related, and > because it is a wire protocol which seems inefficient compared to a > shared memory protocol, especially when sending large objects such as > textures. X uses the same base protocol on the wire as local. But the protocol can be extended and parts of it overridden, for example the shared memory extension is used to avoid the texture copies. The advantage to this scheme is that any pair of machines can always communicate using the base protocol. It the client/server are both local they will be able to negotiate the shared memory extension and upgrade their communications. > > Jacob > -- Jon Smirl jonsmirl@xxxxxxxxx _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |