From: Leo Liu Date: Mon, 25 Apr 2016 20:07:21 +0000 (-0400) Subject: st/va: add dri3 support X-Git-Tag: upstream/17.1.0~9846 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8282178ab0fcd0425890c63564e064606ae1bb8;p=platform%2Fupstream%2Fmesa.git st/va: add dri3 support Signed-off-by: Leo Liu Reviewed-by: Alex Deucher Reviewed-by: Christian König --- 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;