diff options
author | Brian Paul <[email protected]> | 2017-11-17 09:51:10 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-11-17 16:09:39 -0700 |
commit | fdee3e1d824ed2d100c04983d5c5fe349ca1fe73 (patch) | |
tree | 65cf314f82c171db78cbc2115f1ed1b74f392b09 /src/gallium/auxiliary/tgsi/tgsi_info.h | |
parent | a01ba366e01b7d1cdfa6b0e6647536b10c0667ef (diff) |
tgsi: bump tgsi_opcode_info::output_mode size to 4 bits
To avoid problems with MSVC. And verify size with ASSERT_BITFIELD_SIZE().
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_info.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.h b/src/gallium/auxiliary/tgsi/tgsi_info.h index 8d32f4774be..bbd86c6b969 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_info.h +++ b/src/gallium/auxiliary/tgsi/tgsi_info.h @@ -78,7 +78,7 @@ struct tgsi_opcode_info unsigned is_branch:1; unsigned pre_dedent:1; unsigned post_indent:1; - enum tgsi_output_mode output_mode:3; + enum tgsi_output_mode output_mode:4; unsigned opcode:8; }; |