diff options
author | Keith Whitwell <[email protected]> | 2008-04-25 14:20:02 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-25 14:20:26 +0100 |
commit | 2325d1959783aaf57178a86d8a0b28f168761e13 (patch) | |
tree | a035cfe005ae0cfef1de8d8f7926f384a5b448b0 /src | |
parent | 14cfcb18204233d3d4848ea8e579465983df3d75 (diff) |
tgsi: fix compile when HIGH_PRECISION not defined
Diffstat (limited to 'src')
-rwxr-xr-x | src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c index c3295a27fff..559370e613a 100755 --- a/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c +++ b/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c @@ -854,7 +854,7 @@ emit_rsqrt( /* On Intel CPUs at least, this is only accurate to 12 bits -- not * good enough. */ - emit_rsqrtps( + sse_rsqrtps( func, make_xmm( xmm_dst ), make_xmm( xmm_src ) ); |