search for: config_sdl

Displaying 3 results from an estimated 3 matches for "config_sdl".

Did you mean: config_sdla
2006 Oct 23
14
SDL display of HVMs -- how?
I''m having some trouble working out how to make the SDL interface for HVM domUs appear. The documentation simply says "it will appear" when you start the domU, but doesn''t state what packages or libraries are needed in order for this magic to happen, or explain how to debug it if it doesn''t happen. All that I''m getting at the moment is a domU (running
2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
...strncat(domain_name, optarg, sizeof(domain_name) - 20); break; @@ -5879,6 +5914,8 @@ dumb_display_init(ds); } else if (vnc_display != -1) { vnc_display_init(ds, vnc_display); + if (vncviewer) + start_viewer(vnc_display); } else { #if defined(CONFIG_SDL) sdl_display_init(ds, full_screen); _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...; + vnc_display_password(ds, password); + vnc_display_port = vnc_display_open(ds, vnc_display, vncunused); + if (vnc_display_port < 0) + exit(1); + xenstore_write_vncport(vnc_display_port); + } #if defined(CONFIG_SDL) - sdl_display_init(ds, full_screen, no_frame, opengl_enabled); + if (sdl || !vnc_display) + sdl_display_init(ds, full_screen, no_frame, opengl_enabled); #elif defined(CONFIG_COCOA) - cocoa_display_init(ds, full_screen); -#else - dumb_display_init(ds)...