[Mesa-dev] [PATCH] gallium/docs: Fix an inequality sign of TGSI_SEMANTIC_SUBGROUP_LT_MASK
Nicolai Hähnle
nhaehnle at gmail.com
Mon Aug 28 10:05:59 UTC 2017
On 23.08.2017 18:54, Gwan-gyeong Mun wrote:
> 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 <elongbug at gmail.com>
R-b and pushed, thanks!
> ---
> src/gallium/docs/source/tgsi.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/gallium/docs/source/tgsi.rst b/src/gallium/docs/source/tgsi.rst
> index 31331ef511..0bd9964a98 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.
>
>
>
--
Lerne, wie die Welt wirklich ist,
Aber vergiss niemals, wie sie sein sollte.
More information about the mesa-dev
mailing list