diff options
author | Brian <[email protected]> | 2007-08-21 20:13:53 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-21 20:18:58 -0600 |
commit | 88e12872fa3e1d1d2aa33653b3bf2b6982b2fafd (patch) | |
tree | 8e66d50cbfc412f86e1ec3f01865a0f863e41b9e | |
parent | 0d9bcdbeb11ad1ce7e5257f652ccf9ebf1aa59a7 (diff) |
comments
-rw-r--r-- | src/mesa/pipe/tgsi/core/tgsi_token.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/pipe/tgsi/core/tgsi_token.h b/src/mesa/pipe/tgsi/core/tgsi_token.h index 3ed341fb7b1..3e66d55b7da 100644 --- a/src/mesa/pipe/tgsi/core/tgsi_token.h +++ b/src/mesa/pipe/tgsi/core/tgsi_token.h @@ -1349,7 +1349,9 @@ struct tgsi_src_register_ext_swz unsigned Extended : 1; /* BOOL */ }; -/* +/** + * Extra src register modifiers + * * If Complement is TRUE, the source register is modified by subtracting it * from 1.0. * @@ -1411,7 +1413,9 @@ struct tgsi_dst_register_ext unsigned Extended : 1; /* BOOL */ }; -/* +/** + * Extra destination register modifiers + * * If tgsi_dst_register_ext::Type is TGSI_DST_REGISTER_EXT_TYPE_CONDCODE, * it should be cast to tgsi_dst_register_ext_condcode. * @@ -1424,7 +1428,6 @@ struct tgsi_dst_register_ext * If tgsi_dst_register_ext::Extended is TRUE, another tgsi_dst_register_ext * follows. */ - struct tgsi_dst_register_ext_concode { unsigned Type : 4; /* TGSI_DST_REGISTER_EXT_TYPE_CONDCODE */ |