Re: [Mesa-dev] [PATCH] gallium/docs: Fix the math formula of U2I64

2017-08-23 Thread Nicolai Hähnle
On 22.08.2017 17:57, Gwan-gyeong Mun wrote: before: dst.xy = (uint64_t) src0.x dst.zw = (uint64_t) src0.y after: dst.xy = (int64_t) src0.x dst.zw = (int64_t) src0.y Signed-off-by: Mun Gwan-gyeong R-b and pushed, thanks. --- src/gallium/docs/source/tgsi.rst | 4 ++-- 1 file

[Mesa-dev] [PATCH] gallium/docs: Fix the math formula of U2I64

2017-08-22 Thread Gwan-gyeong Mun
before: dst.xy = (uint64_t) src0.x dst.zw = (uint64_t) src0.y after: dst.xy = (int64_t) src0.x dst.zw = (int64_t) src0.y Signed-off-by: Mun Gwan-gyeong --- src/gallium/docs/source/tgsi.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/docs/source/tg