* [PATCH] xl: ignore opengl unless sdl is enabled
@ 2010-05-07 22:26 Jeremy Fitzhardinge
0 siblings, 0 replies; only message in thread
From: Jeremy Fitzhardinge @ 2010-05-07 22:26 UTC (permalink / raw)
To: Stefano Stabellini; +Cc: Ian Jackson, Xen-devel, Vincent Hanquez
The "opengl" setting is documented as having no effect unless "sdl" is
set. Make sure this is honoured.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
diff -r fbd06034bd92 tools/libxl/libxl.c
--- a/tools/libxl/libxl.c Fri May 07 15:24:26 2010 -0700
+++ b/tools/libxl/libxl.c Fri May 07 15:25:09 2010 -0700
@@ -819,7 +819,7 @@
flexarray_set(dm_args, num++, "-vncunused");
}
}
- if (info->sdl || info->opengl) {
+ if (info->sdl) {
flexarray_set(dm_args, num++, "-sdl");
if (info->opengl) {
flexarray_set(dm_args, num++, "-disable-opengl");
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-05-07 22:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-07 22:26 [PATCH] xl: ignore opengl unless sdl is enabled Jeremy Fitzhardinge
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.