diff options
author | Leo Liu <[email protected]> | 2018-09-10 16:02:29 -0400 |
---|---|---|
committer | Leo Liu <[email protected]> | 2018-09-13 14:28:32 -0400 |
commit | 4d8ec12f0384e6f6c838ebfc82c41ac39ffb7b22 (patch) | |
tree | 3663245a34b5a82189bededeb4fade3fedfb0a7c /src/gallium/auxiliary/vl | |
parent | cd77d49ecfd185abef4cd1c6e69193c980815901 (diff) |
vl/dri: add color depth to vl winsys
For VDPAU use later
Signed-off-by: Leo Liu <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_winsys.h | 1 | ||||
-rw-r--r-- | src/gallium/auxiliary/vl/vl_winsys_dri3.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/vl/vl_winsys.h b/src/gallium/auxiliary/vl/vl_winsys.h index bfb60180079..3a35cb6a859 100644 --- a/src/gallium/auxiliary/vl/vl_winsys.h +++ b/src/gallium/auxiliary/vl/vl_winsys.h @@ -70,6 +70,7 @@ struct vl_screen struct pipe_loader_device *dev; void *xcb_screen; + uint32_t color_depth; }; #ifdef HAVE_X11_PLATFORM diff --git a/src/gallium/auxiliary/vl/vl_winsys_dri3.c b/src/gallium/auxiliary/vl/vl_winsys_dri3.c index 30e732e38eb..82b6445a767 100644 --- a/src/gallium/auxiliary/vl/vl_winsys_dri3.c +++ b/src/gallium/auxiliary/vl/vl_winsys_dri3.c @@ -835,6 +835,7 @@ vl_dri3_screen_create(Display *display, int screen) free(geom_reply); goto close_fd; } + scrn->base.color_depth = geom_reply->depth; free(geom_reply); if (pipe_loader_drm_probe_fd(&scrn->base.dev, fd)) |