From: Chad Versace Date: Tue, 23 May 2017 23:46:59 +0000 (-0700) Subject: i965: Document type of GLuint __DRIimage::format X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f5702230e0071c272d2dffd00b317d68042eb783;p=mesa.git i965: Document type of GLuint __DRIimage::format It's either a mesa_format or mesa_array_format. Reviewed-by: Tapani Pälli --- diff --git a/src/mesa/drivers/dri/i965/intel_image.h b/src/mesa/drivers/dri/i965/intel_image.h index ad426910e41..cf0610540fc 100644 --- a/src/mesa/drivers/dri/i965/intel_image.h +++ b/src/mesa/drivers/dri/i965/intel_image.h @@ -70,7 +70,7 @@ struct __DRIimageRec { uint32_t pitch; /**< in bytes */ GLenum internal_format; uint32_t dri_format; - GLuint format; + GLuint format; /**< mesa_format or mesa_array_format */ uint64_t modifier; /**< fb modifier (fourcc) */ uint32_t offset;