From dbe7fc00d5715bcc08acc3141414da037938bbdd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicolai=20H=C3=A4hnle?= Date: Fri, 15 Sep 2017 17:47:27 +0200 Subject: [PATCH] tgsi: fix the documentation of DLDEXP MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Sourcing the exponent for the zw destination pair from Z is consistent with both tgsi_exec and gallivm. In practice, st_glsl_to_tgsi always generates per-channel instructions anyway. Reviewed-by: Marek Olšák Tested-by: Dieter Nützel --- 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 0bd9964a985..8633c929b9f 100644 --- a/src/gallium/docs/source/tgsi.rst +++ b/src/gallium/docs/source/tgsi.rst @@ -1859,7 +1859,7 @@ source is an integer. dst.xy = src0.xy \times 2^{src1.x} - dst.zw = src0.zw \times 2^{src1.y} + dst.zw = src0.zw \times 2^{src1.z} .. opcode:: DMIN - Minimum -- 2.30.2