[Mesa-dev] [PATCH 1/2] gallium: Moving X11 dependencies under HAVE_PLATFORM_X11
Emil Velikov
emil.l.velikov at gmail.com
Tue Nov 29 12:22:16 UTC 2016
On 28 November 2016 at 14:51, Christian König <deathsimple at vodafone.de> wrote:
> --- a/src/gallium/state_trackers/va/context.c
> +++ b/src/gallium/state_trackers/va/context.c
> @@ -118,6 +118,7 @@ VA_DRIVER_INIT_FUNC(VADriverContextP ctx)
> return VA_STATUS_ERROR_UNIMPLEMENTED;
> case VA_DISPLAY_GLX:
> case VA_DISPLAY_X11:
> +#if defined(HAVE_PLATFORM_X11)
> #if defined(HAVE_DRI3)
> drv->vscreen = vl_dri3_screen_create(ctx->native_dpy, ctx->x11_screen);
> #endif
> @@ -125,6 +126,7 @@ VA_DRIVER_INIT_FUNC(VADriverContextP ctx)
> drv->vscreen = vl_dri2_screen_create(ctx->native_dpy, ctx->x11_screen);
> if (!drv->vscreen)
> goto error_screen;
> +#endif
As mentioned off-list we want an #else return
VA_STATUS_ERROR_UNIMPLEMENTED; here.
I've added that locally and noticed that the patch (as-is) causes
breakage. I have a WIP that unwraps the --with-egl-platform, fixing
Vulkan implementations along the way.
I should have that finished later on today.
Thanks
Emil
More information about the mesa-dev
mailing list