From: Emeric Grange Date: Mon, 12 Sep 2011 21:39:31 +0000 (+0200) Subject: st/vdpau: Add get_clear_color capability X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85534e6f48c1ad6ff8dee77e0407c6c3dedb4b84;p=mesa.git st/vdpau: Add get_clear_color capability Signed-off-by: Emeric Grange Reviewed-by: Christian König --- diff --git a/src/gallium/state_trackers/vdpau/presentation.c b/src/gallium/state_trackers/vdpau/presentation.c index 927350ba980..b3b543b4a80 100644 --- a/src/gallium/state_trackers/vdpau/presentation.c +++ b/src/gallium/state_trackers/vdpau/presentation.c @@ -139,12 +139,20 @@ VdpStatus vlVdpPresentationQueueGetBackgroundColor(VdpPresentationQueue presentation_queue, VdpColor *const background_color) { + vlVdpPresentationQueue *pq; + VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Getting background color\n"); if (!background_color) return VDP_STATUS_INVALID_POINTER; - return VDP_STATUS_NO_IMPLEMENTATION; + pq = vlGetDataHTAB(presentation_queue); + if (!pq) + return VDP_STATUS_INVALID_HANDLE; + + vl_compositor_get_clear_color(&pq->compositor, (float*)background_color); + + return VDP_STATUS_OK; } /**