gallium/docs: Fix the math formula of U2I64
authorGwan-gyeong Mun <elongbug@gmail.com>
Tue, 22 Aug 2017 15:57:18 +0000 (00:57 +0900)
committerNicolai Hähnle <nicolai.haehnle@amd.com>
Wed, 23 Aug 2017 12:09:49 +0000 (14:09 +0200)
commit9649c6accedf091e294efe724fd3103aba1ca0f0
tree3a8638912476049e7798d037f0f89b6760652487
parent9aabf80ef3c1f2a320e83643a9edf96b1e483133
gallium/docs: Fix the math formula of U2I64

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 <elongbug@gmail.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
src/gallium/docs/source/tgsi.rst