[Mesa-dev] [PATCH] i965: implement (un)mapImage
Chris Wilson
chris at chris-wilson.co.uk
Tue Nov 14 11:08:48 UTC 2017
Quoting Julien Isorce (2017-11-14 11:05:52)
> Already implemented for Gallium drivers.
>
> Useful for gbm_bo_(un)map.
>
> Tests:
> By porting wayland/weston/clients/simple-dmabuf-drm.c to GBM.
> kmscube --mode=rgba
> kmscube --mode=nv12-1img
> kmscube --mode=nv12-2img
> piglit ext_image_dma_buf_import-refcount -auto
> piglit ext_image_dma_buf_import-transcode-nv12-as-r8-gr88 -auto
> piglit ext_image_dma_buf_import-sample_rgb -fmt=XR24 -alpha-one -auto
> piglit ext_image_dma_buf_import-sample_rgb -fmt=AR24 -auto
> piglit ext_image_dma_buf_import-sample_yuv -fmt=NV12 -auto
> piglit ext_image_dma_buf_import-sample_yuv -fmt=YU12 -auto
> piglit ext_image_dma_buf_import-sample_yuv -fmt=YV12 -auto
>
> v2: add early return if (flag & MAP_INTERNAL_MASK)
> v3: take input rect into account and test with kmscube and piglit.
> v4: handle wraparound and bo reference.
> v5: indent, exclude 0 width and height on the boundary, map bo
> independently of the image.
>
> Signed-off-by: Julien Isorce <jisorce at oblong.com>
> ---
> src/mesa/drivers/dri/i965/intel_screen.c | 65 +++++++++++++++++++++++++++++++-
> 1 file changed, 63 insertions(+), 2 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c
> index cdc36ad..88bd982 100644
> --- a/src/mesa/drivers/dri/i965/intel_screen.c
> +++ b/src/mesa/drivers/dri/i965/intel_screen.c
> @@ -755,6 +755,67 @@ intel_create_image(__DRIscreen *dri_screen,
> loaderPrivate);
> }
>
> +static void *
> +intel_map_image(__DRIcontext *context, __DRIimage *image,
> + int x0, int y0, int width, int height,
> + unsigned int flags, int *stride, void **map_info)
> +{
> + struct brw_context *brw = NULL;
> + struct brw_bo *bo = NULL;
> + void *raw_data = NULL;
> + GLuint pix_w = 1;
> + GLuint pix_h = 1;
> + GLint pix_bytes = 1;
> +
> + if (!context || !image || !stride || !map_info || *map_info)
> + return NULL;
> +
> + if (x0 < 0 || x0 >= image->width || width > image->width - x0)
> + return NULL;
> +
> + if (y0 < 0 || y0 >= image->height || height > image->height - y0)
> + return NULL;
> +
> + if (flags & MAP_INTERNAL_MASK)
> + return NULL;
> +
> + brw = context->driverPrivate;
> + bo = image->bo;
> +
> + assert(brw);
> + assert(bo);
> +
> + /* DRI flags and GL_MAP.*_BIT flags are the same, so just pass them on. */
> + raw_data = brw_bo_map(brw, bo, flags);
> + if (!raw_data)
> + return NULL;
> +
> + _mesa_get_format_block_size(image->format, &pix_w, &pix_h);
> + pix_bytes = _mesa_get_format_bytes(image->format);
> +
> + assert(pix_w);
> + assert(pix_h);
> + assert(pix_bytes > 0);
> +
> + raw_data += ((x0 / pix_w) * pix_bytes) + (y0 / pix_h) * image->pitch;
I couldn't convince you to remove the extra ()?
Reviewed-by: Chris Wilson <chris at chris-wilson.co.uk>
-Chris
More information about the mesa-dev
mailing list