xf86-video-intel: src/sna/sna_accel.c

Chris Wilson ickle at kemper.freedesktop.org
Mon Mar 20 09:48:25 UTC 2017


 src/sna/sna_accel.c |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 2452066b7771f120a1d03d9450c96565cf31de10
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Mon Mar 20 09:36:25 2017 +0000

    sna: Fixup for fb24 xorg ABI change
    
    commit 0803918e64262482035f042e5e1f2a571d3dea1b
    Author: Adam Jackson <ajax at redhat.com>
    Date:   Sat Sep 24 19:40:52 2016 -0400
    
        fb: Remove 24bpp support (v3)
    
    removes the gc.pRotatedPixmap member without a guide to the ABI bump.
    Don't initialize pRotatedPixmap out from the start of the unstable tag .
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
index 11beb906..25a075cf 100644
--- a/src/sna/sna_accel.c
+++ b/src/sna/sna_accel.c
@@ -16962,7 +16962,9 @@ static int sna_create_gc(GCPtr gc)
 
 	gc->freeCompClip = 0;
 	gc->pCompositeClip = 0;
+#if XORG_VERSION_CURRENT < XORG_VERSION_NUMERIC(1,19,99,1,0)
 	gc->pRotatedPixmap = 0;
+#endif
 
 	fb_gc(gc)->bpp = bits_per_pixel(gc->depth);
 


More information about the xorg-commit mailing list