st/vdpau: Add get_clear_color capability
authorEmeric Grange <emeric.grange@gmail.com>
Mon, 12 Sep 2011 21:39:31 +0000 (23:39 +0200)
committerChristian König <deathsimple@vodafone.de>
Wed, 14 Sep 2011 13:49:16 +0000 (15:49 +0200)
Signed-off-by: Emeric Grange <emeric.grange@gmail.com>
Reviewed-by: Christian König <deathsimple@vodafone.de>
src/gallium/state_trackers/vdpau/presentation.c

index 927350b..b3b543b 100644 (file)
@@ -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;
 }
 
 /**