From 6f9d29040cd9f4723a2e6c1e5d2ec8104efc0710 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Fri, 16 Feb 2018 16:44:37 +0000 Subject: [PATCH] hw/xwin: Update for glxvnd - Link with libglxvnd in meson.build - Call xorgGlxCreateVendor() like all other DDX Signed-off-by: Jon Turney --- hw/xwin/InitOutput.c | 2 ++ hw/xwin/meson.build | 1 + 2 files changed, 3 insertions(+) diff --git a/hw/xwin/InitOutput.c b/hw/xwin/InitOutput.c index ef19f7941..9560c5684 100644 --- a/hw/xwin/InitOutput.c +++ b/hw/xwin/InitOutput.c @@ -1012,6 +1012,8 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char *argv[]) } } + xorgGlxCreateVendor(); + /* Generate a cookie used by internal clients for authorization */ if (g_fXdmcpEnabled || g_fAuthEnabled) winGenerateAuthorization(); diff --git a/hw/xwin/meson.build b/hw/xwin/meson.build index 87fa6c5cb..bee4a46a4 100644 --- a/hw/xwin/meson.build +++ b/hw/xwin/meson.build @@ -149,6 +149,7 @@ executable( libxserver_fb, libxserver, libxserver_glx, + libglxvnd, libxserver_xkb_stubs, libxserver_miext_shadow, libxserver_pseudoramix,