Module: Mesa Branch: master Commit: dbe7fc00d5715bcc08acc3141414da037938bbdd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=dbe7fc00d5715bcc08acc3141414da037938bbdd
Author: Nicolai Hähnle <[email protected]> Date: Fri Sep 15 17:47:27 2017 +0200 tgsi: fix the documentation of DLDEXP 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 <[email protected]> Tested-by: Dieter Nützel <[email protected]> --- 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 0bd9964a98..8633c929b9 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 _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
