diff options
author | James Benton <[email protected]> | 2012-06-12 12:11:14 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-06-29 12:21:02 +0100 |
commit | 6dd8e6f9cbca63b222fe4a1c2c49ddb53e75999e (patch) | |
tree | 80d2ad8e582408ea4502511262acf79960528d29 /src/gallium/auxiliary/SConscript | |
parent | c8d3481cdb12a10e02b23d65c73017ce5925cde7 (diff) |
util: Reimplement half <-> float conversions.
Removed u_half.py used to generate the table for previous method.
Previous implementation of float to half conversion was faulty for
denormalised and NaNs and would require extra logic to fix,
thus making the speedup of using tables irrelevant.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/SConscript')
-rw-r--r-- | src/gallium/auxiliary/SConscript | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/SConscript b/src/gallium/auxiliary/SConscript index 07c420e138d..bfd5ec34c04 100644 --- a/src/gallium/auxiliary/SConscript +++ b/src/gallium/auxiliary/SConscript @@ -35,13 +35,6 @@ env.CodeGenerate( command = python_cmd + ' $SCRIPT $SOURCE > $TARGET' ) -env.CodeGenerate( - target = 'util/u_half.c', - script = 'util/u_half.py', - source = [], - command = python_cmd + ' $SCRIPT > $TARGET' -) - env.Depends('util/u_format_table.c', [ '#src/gallium/auxiliary/util/u_format_parse.py', 'util/u_format_pack.py', |