From e8282178ab0fcd0425890c63564e064606ae1bb8 Mon Sep 17 00:00:00 2001 From: Leo Liu Date: Mon, 25 Apr 2016 16:07:21 -0400 Subject: [PATCH] st/va: add dri3 support MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Leo Liu Reviewed-by: Alex Deucher Reviewed-by: Christian König --- src/gallium/state_trackers/va/context.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/va/context.c b/src/gallium/state_trackers/va/context.c index 25d587a..93ab3d9 100644 --- a/src/gallium/state_trackers/va/context.c +++ b/src/gallium/state_trackers/va/context.c @@ -119,7 +119,11 @@ VA_DRIVER_INIT_FUNC(VADriverContextP ctx) return VA_STATUS_ERROR_UNIMPLEMENTED; case VA_DISPLAY_GLX: case VA_DISPLAY_X11: - drv->vscreen = vl_dri2_screen_create(ctx->native_dpy, ctx->x11_screen); +#if defined(HAVE_DRI3) + drv->vscreen = vl_dri3_screen_create(ctx->native_dpy, ctx->x11_screen); +#endif + if (!drv->vscreen) + drv->vscreen = vl_dri2_screen_create(ctx->native_dpy, ctx->x11_screen); if (!drv->vscreen) goto error_screen; break; -- 2.7.4