diff options
author | Brian Paul <[email protected]> | 2011-09-12 17:04:11 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-13 08:14:31 -0600 |
commit | 52b9ec727bfeca0cf13078dc352962b58293b2d4 (patch) | |
tree | 2787034cdc649841cd67935b4e0a215ec3edbe73 /src/gallium | |
parent | f626d99edf17a1d3203b257f6fe6993229ea6866 (diff) |
gallium: minor comments for util_format_channel_description fields
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_format.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ }; |