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:
committed by
Nicolai Hähnle
parent
9aabf80ef3
commit
9649c6acce
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user