i965: Fix duplication of DRI images
authorLouis-Francis Ratté-Boulianne <lfrb@collabora.com>
Thu, 31 Aug 2017 04:20:46 +0000 (00:20 -0400)
committerDaniel Stone <daniels@collabora.com>
Wed, 20 Sep 2017 14:07:05 +0000 (07:07 -0700)
Some DRI image properties weren't properly duplicated in the
new image. Some properties are still missing, but I'm not
certain if there was a good reason to let them out in the first
place.

Signed-off-by: Louis-Francis Ratté-Boulianne <lfrb@collabora.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/mesa/drivers/dri/i965/intel_screen.c

index ad081f06584b626ba568afeabf211ef6ab4d6b67..bc2bba00b6a52e5ae3d9e62238ab79dcf99ce037 100644 (file)
@@ -868,6 +868,9 @@ intel_dup_image(__DRIimage *orig_image, void *loaderPrivate)
    image->tile_y          = orig_image->tile_y;
    image->has_depthstencil = orig_image->has_depthstencil;
    image->data            = loaderPrivate;
+   image->dma_buf_imported = orig_image->dma_buf_imported;
+   image->aux_offset      = orig_image->aux_offset;
+   image->aux_pitch       = orig_image->aux_pitch;
 
    memcpy(image->strides, orig_image->strides, sizeof(image->strides));
    memcpy(image->offsets, orig_image->offsets, sizeof(image->offsets));