From: Brian Paul Date: Mon, 12 Sep 2011 23:04:11 +0000 (-0600) Subject: gallium: minor comments for util_format_channel_description fields X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52b9ec727bfeca0cf13078dc352962b58293b2d4;p=mesa.git gallium: minor comments for util_format_channel_description fields --- diff --git a/src/gallium/auxiliary/util/u_format.h b/src/gallium/auxiliary/util/u_format.h index 566fa79e781..352710310c5 100644 --- a/src/gallium/auxiliary/util/u_format.h +++ b/src/gallium/auxiliary/util/u_format.h @@ -119,9 +119,9 @@ enum util_format_colorspace { struct util_format_channel_description { - unsigned type:6; + unsigned type:6; /**< UTIL_FORMAT_TYPE_x */ unsigned normalized:1; - unsigned size:9; + unsigned size:9; /**< bits per channel */ };