mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
nir: Fix incorrect comment
We have 1-bit bools these days. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23107>
This commit is contained in:
parent
40a056db51
commit
63c723bfcd
1 changed files with 2 additions and 2 deletions
|
|
@ -859,7 +859,7 @@ typedef struct nir_register {
|
|||
unsigned num_components; /** < number of vector components */
|
||||
unsigned num_array_elems; /** < size of array (0 for no array) */
|
||||
|
||||
/* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
|
||||
/* The bit-size of each channel; must be one of 1, 8, 16, 32, or 64 */
|
||||
uint8_t bit_size;
|
||||
|
||||
/**
|
||||
|
|
@ -954,7 +954,7 @@ typedef struct nir_ssa_def {
|
|||
|
||||
uint8_t num_components;
|
||||
|
||||
/* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
|
||||
/* The bit-size of each channel; must be one of 1, 8, 16, 32, or 64 */
|
||||
uint8_t bit_size;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue