aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2015-11-09 11:18:14 +0000
committerEmil Velikov <[email protected]>2015-11-20 10:58:44 +0000
commitd03d9ecafa6548c30e22e26b14bf552472a9f231 (patch)
tree282e52fdcec687339236d15698b91a1e747f61ff /src/gallium/auxiliary/vl
parent6b152ee7b6121f661cdcfdfafa547457dc27b921 (diff)
auxiliary/vl/drm: setup the dispatch
Signed-off-by: Emil Velikov <[email protected]> Acked-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r--src/gallium/auxiliary/vl/vl_winsys_drm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/vl/vl_winsys_drm.c b/src/gallium/auxiliary/vl/vl_winsys_drm.c
index 1167fcf6a90..2ebf20c4bd3 100644
--- a/src/gallium/auxiliary/vl/vl_winsys_drm.c
+++ b/src/gallium/auxiliary/vl/vl_winsys_drm.c
@@ -59,6 +59,12 @@ vl_drm_screen_create(int fd)
return NULL;
}
+ vscreen->destroy = vl_drm_screen_destroy;
+ vscreen->texture_from_drawable = NULL;
+ vscreen->get_dirty_area = NULL;
+ vscreen->get_timestamp = NULL;
+ vscreen->set_next_timestamp = NULL;
+ vscreen->get_private = NULL;
return vscreen;
}