[Mesa-dev] [PATCH 1/4] st/va: fix build fails with pipe loader
Leo Liu
leo.liu at amd.com
Thu Nov 5 10:47:09 PST 2015
There is no dev in drv, and dev should be from vl_screen here
---
src/gallium/state_trackers/va/context.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/gallium/state_trackers/va/context.c b/src/gallium/state_trackers/va/context.c
index ec9e048..25fa905 100644
--- a/src/gallium/state_trackers/va/context.c
+++ b/src/gallium/state_trackers/va/context.c
@@ -151,8 +151,9 @@ VA_DRIVER_INIT_FUNC(VADriverContextP ctx)
#if GALLIUM_STATIC_TARGETS
drv->vscreen->pscreen = dd_create_screen(drm_fd);
#else
- if (pipe_loader_drm_probe_fd(&drv->dev, drm_fd))
- drv->vscreen->pscreen = pipe_loader_create_screen(drv->dev, PIPE_SEARCH_DIR);
+ if (pipe_loader_drm_probe_fd(&drv->vscreen->dev, drm_fd))
+ drv->vscreen->pscreen =
+ pipe_loader_create_screen(drv->vscreen->dev, PIPE_SEARCH_DIR);
#endif
if (!drv->vscreen->pscreen)
--
1.9.1
More information about the mesa-dev
mailing list