From: Erik Skultety Date: Thu, 15 Nov 2018 10:37:00 +0000 (+0100) Subject: conf: gfx: Add egl-headless as a member to virDomainGraphicsDef struct X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0a75de221984b971cb841c6918e6746eb22b1547;p=libvirt.git conf: gfx: Add egl-headless as a member to virDomainGraphicsDef struct Since we need to specify the rendernode option onto QEMU cmdline, we need this union member to retain consistency in how we build the cmdline. Signed-off-by: Erik Skultety Reviewed-by: Ján Tomko --- diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h index b50ff819fa..b24e6ec3de 100644 --- a/src/conf/domain_conf.h +++ b/src/conf/domain_conf.h @@ -1659,6 +1659,9 @@ struct _virDomainGraphicsDef { virTristateBool gl; char *rendernode; } spice; + struct { + char *rendernode; + } egl_headless; } data; /* nListens, listens, and *port are only useful if type is vnc, * rdp, or spice. They've been extracted from the union only to