mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
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:
parent
9aabf80ef3
commit
9649c6acce
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue