[Spice-commits] server/red-parse-qxl.c

Frediano Ziglio fziglio at kemper.freedesktop.org
Tue Apr 17 18:43:37 UTC 2018


 server/red-parse-qxl.c |    7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit 24094348dd6845f776cfb03833a368acf54239af
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Tue Apr 17 18:19:16 2018 +0200

    qxl: Remove red_put_blend()
    
    SpiceBlend is a typedef to SpiceCopy, and red_put_blend() and
    red_put_copy() are identical, so we can add a #define red_put_blend
    red_put_copy similar to the one we already have for red_get_blend.
    
    Signed-off-by: Christophe Fergeau <cfergeau at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/server/red-parse-qxl.c b/server/red-parse-qxl.c
index 9f1303da..b766e993 100644
--- a/server/red-parse-qxl.c
+++ b/server/red-parse-qxl.c
@@ -712,12 +712,7 @@ static void red_put_copy(SpiceCopy *red)
 
 // these types are really the same thing
 #define red_get_blend_ptr red_get_copy_ptr
-
-static void red_put_blend(SpiceBlend *red)
-{
-    red_put_image(red->src_bitmap);
-    red_put_qmask(&red->mask);
-}
+#define red_put_blend red_put_copy
 
 static void red_get_transparent_ptr(RedMemSlotInfo *slots, int group_id,
                                     SpiceTransparent *red, QXLTransparent *qxl,


More information about the Spice-commits mailing list