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>
This commit is contained in:
Gwan-gyeong Mun 2017-08-23 00:57:18 +09:00 committed by Nicolai Hähnle
parent 9aabf80ef3
commit 9649c6acce

View file

@ -2199,9 +2199,9 @@ two-component vectors with 64-bits in each component.
.. math::
dst.xy = (uint64_t) src0.x
dst.xy = (int64_t) src0.x
dst.zw = (uint64_t) src0.y
dst.zw = (int64_t) src0.y
.. opcode:: I2I64 - Signed Integer to 64-bit Integer