diff options
author | Gwan-gyeong Mun <[email protected]> | 2017-08-24 01:54:18 +0900 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-08-28 12:05:44 +0200 |
commit | c261bc11e6d40b68448f5e6947bc64e61d5921c7 (patch) | |
tree | b6a96037e27f6a40ca4bb2702e3c42ecc6aef2b5 /src/gallium/docs | |
parent | 5ba443b246db421385434a2b36a1340697aa3494 (diff) |
gallium/docs: Fix an inequality sign of TGSI_SEMANTIC_SUBGROUP_LT_MASK
A previous expression presents same as TGSI_SEMANTIC_SUBGROUP_GT_MASK.
It fixes a direction of an inequality for TGSI_SEMANTIC_SUBGROUP_LT_MASK.
before:
bit index > TGSI_SEMANTIC_SUBGROUP_INVOCATION
after:
bit index < TGSI_SEMANTIC_SUBGROUP_INVOCATION
Signed-off-by: Mun Gwan-gyeong <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/tgsi.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/docs/source/tgsi.rst b/src/gallium/docs/source/tgsi.rst index 31331ef5111..0bd9964a985 100644 --- a/src/gallium/docs/source/tgsi.rst +++ b/src/gallium/docs/source/tgsi.rst @@ -3397,7 +3397,7 @@ A bit mask of ``bit index <= TGSI_SEMANTIC_SUBGROUP_INVOCATION``, i.e. TGSI_SEMANTIC_SUBGROUP_LT_MASK """""""""""""""""""""""""""""" -A bit mask of ``bit index > TGSI_SEMANTIC_SUBGROUP_INVOCATION``, i.e. +A bit mask of ``bit index < TGSI_SEMANTIC_SUBGROUP_INVOCATION``, i.e. ``(1 << subgroup_invocation) - 1`` in arbitrary precision arithmetic. |