From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JqtUN-00086q-U8 for qemu-devel@nongnu.org; Tue, 29 Apr 2008 13:19:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JqtUJ-00084a-87 for qemu-devel@nongnu.org; Tue, 29 Apr 2008 13:19:35 -0400 Received: from [199.232.76.173] (port=37171 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JqtUI-00084Q-UG for qemu-devel@nongnu.org; Tue, 29 Apr 2008 13:19:31 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JqtUI-0003pL-FW for qemu-devel@nongnu.org; Tue, 29 Apr 2008 13:19:30 -0400 From: Paul Brook Subject: Re: [Qemu-devel] OpenGL in qemu Date: Tue, 29 Apr 2008 18:19:22 +0100 References: <4816BA0E.1070403@babel.homelinux.net> In-Reply-To: <4816BA0E.1070403@babel.homelinux.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200804291819.22549.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Nik > 3. Have qemu dynamically locate and link to the host's opengl system. This is fairly trivial, and what most applications do. > Finally, I also found the vmgl project which is only linux<->linux, but > seems interesting. It should work on windows with very little modification. The problem is that very few windows applications use OpenGL. Getiing basic OpenGL working is fairly easy. The tricky bits are: - Multiple contexts. - Window manager integration, and cliprects. - OpenGL extensions, particularly if you're going to be migrating between different hosts.. You may want to take a look at gallium[1]. I expect that will provide a better medium term solution than opengl, especially if you care about windows/Direct3D. [1] http://www.tungstengraphics.com/wiki/index.php/Gallium3D Paul