gallium/tgsi: correct typo propagated from NV_vertex_program1_1
authorErik Faye-Lund <kusmabite@gmail.com>
Fri, 7 Feb 2014 12:45:11 +0000 (13:45 +0100)
committerBrian Paul <brianp@vmware.com>
Fri, 7 Feb 2014 15:22:23 +0000 (08:22 -0700)
commit5125165dde6ea6c3599810a92d6bcd4a5650adfd
tree8d30ad29ce82ea5992a97f338894d228377c63c1
parent7a49a796a41fa5ba3dccc2e13de43520b8d05bb6
gallium/tgsi: correct typo propagated from NV_vertex_program1_1

In the specification text of NV_vertex_program1_1, the upper
limit of the RCC instruction is written as 1.884467e+19 in
scientific notation, but as 0x5F800000 in binary. But the binary
version translates to 1.84467e+19 rather than 1.884467e+19 in
scientific notation.

Since the lower-limit equals 2^-64 and the binary version equals
2^+64, let's assume the value in scientific notation is a typo
and implement this using the value from the binary version
instead.

Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/tgsi/tgsi_exec.c
src/gallium/docs/source/tgsi.rst