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

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Apr 15 16:26:27 UTC 2020


 src/sna/sna_dri2.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f2a54e256dd7539633c476a379db2b1e60eec811
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Wed Apr 15 17:15:41 2020 +0100

    sna/dri2: Interpret DRI2ATTACH_FORMAT as depth not bpp
    
    In mesa i915/i965 pass the bpp to use when creating the surface, but the
    gallium state tracker passed the depth. As it happens that
    BitsPerPixel(format) will do the right thing for both, use that.
    
    | DRI2ATTACH_FORMAT { attachment: CARD32
    |                     format:     CARD32 }
    |
    |  The DRI2ATTACH_FORMAT describes an attachment and the associated
    |  format.  'attachment' describes the attachment point for the buffer,
    |  'format' describes an opaque, device-dependent format for the buffer.
    
    Should we need to use an explicit format (heavens forbid as nobody likes
    DRI2) then that will have to start in the range above 256 (or higher).
    
    For now the convention is defined by the mixture of i965/iris, and that
    is to assume it is essentially a depth.
    
    Reported-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    References: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4569
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/sna/sna_dri2.c b/src/sna/sna_dri2.c
index 5fd4d54b..f2f2c1d3 100644
--- a/src/sna/sna_dri2.c
+++ b/src/sna/sna_dri2.c
@@ -605,7 +605,7 @@ sna_dri2_create_buffer(DrawablePtr draw,
 	struct sna_dri2_private *private;
 	PixmapPtr pixmap;
 	struct kgem_bo *bo;
-	unsigned bpp = format ?: draw->bitsPerPixel;
+	unsigned bpp = format ? BitsPerPixel(format) : draw->bitsPerPixel;
 	unsigned flags = CREATE_EXACT;
 	uint32_t size;
 


More information about the xorg-commit mailing list