i965: fix dma_buf import with non-zero offset.
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>
Mon, 10 Mar 2014 15:55:21 +0000 (16:55 +0100)
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>
Tue, 25 Mar 2014 17:56:41 +0000 (18:56 +0100)
Fix eglCreateImage() from a packed dma_buf surface with a non-zero offset
to pixels data. In particular, this fixes support for planar YUV surfaces
when they are individually mapped on a per-plane basis, i.e. when the
OES_EGL_image_external is not used and user application wants to use its
own shader code for composition, or processing on individual plane (OCL).

Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/intel_screen.c

index 0788a1b8e5f7fa1a355c80ffcdb40bc7f1e5fc6b..8cb1260433a5b1184732c924666660e4959e9b74 100644 (file)
@@ -646,6 +646,7 @@ intel_create_image_from_fds(__DRIscreen *screen,
 {
    struct intel_screen *intelScreen = screen->driverPrivate;
    struct intel_image_format *f;
+   uint32_t mask_x, mask_y;
    __DRIimage *image;
    int i, index;
 
@@ -679,6 +680,14 @@ intel_create_image_from_fds(__DRIscreen *screen,
       image->strides[index] = strides[index];
    }
 
+   if (f->nplanes == 1) {
+      image->offset = image->offsets[0];
+      intel_region_get_tile_masks(image->region, &mask_x, &mask_y, false);
+      if (image->offset & mask_x)
+         _mesa_warning(NULL,
+                       "intel_create_image_from_fds: offset not on tile boundary");
+   }
+
    intel_setup_image_from_dimensions(image);
 
    return image;