diff options
author | Chad Versace <[email protected]> | 2017-05-23 16:46:59 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2017-05-30 12:01:37 -0700 |
commit | f5702230e0071c272d2dffd00b317d68042eb783 (patch) | |
tree | 2f9ccd70d39e1f320a73014e948a68ba136bd0ce /src/mesa | |
parent | da042d951c9d503e25d43a27c2d707fa134a512c (diff) |
i965: Document type of GLuint __DRIimage::format
It's either a mesa_format or mesa_array_format.
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_image.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |