[Mesa-dev] [PATCH 1/2] i965: init image's planar_format in intel_create_image_from_texture
Jason Ekstrand
jason at jlekstrand.net
Thu Apr 5 15:24:27 UTC 2018
Does this fix a bug? If so, what?
On April 4, 2018 16:57:21 James Xiong <james.xiong at intel.com> wrote:
> From: "Xiong, James" <james.xiong at intel.com>
>
> When creating a image from a texture, initialize the image's planar_format
> with the texture's.
>
> Signed-off-by: Xiong, James <james.xiong at intel.com>
> ---
> src/mesa/drivers/dri/i965/intel_screen.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/src/mesa/drivers/dri/i965/intel_screen.c
> b/src/mesa/drivers/dri/i965/intel_screen.c
> index dcb98da..7df8bc4 100644
> --- a/src/mesa/drivers/dri/i965/intel_screen.c
> +++ b/src/mesa/drivers/dri/i965/intel_screen.c
> @@ -578,6 +578,7 @@ intel_create_image_from_texture(__DRIcontext *context,
> int target,
> intel_setup_image_from_mipmap_tree(brw, image, iobj->mt, level, zoffset);
> image->dri_format = driGLFormatToImageFormat(image->format);
> image->has_depthstencil = iobj->mt->stencil_mt? true : false;
> + image->planar_format = iobj->planar_format;
> if (image->dri_format == MESA_FORMAT_NONE) {
> *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
> free(image);
> --
> 2.7.4
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list