mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
llvmpipe: Changed known failures in lp_test_conv.
To comply with the recent fixes to lp_bld_conv. Signed-off-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
4203a0b034
commit
383c1b649b
1 changed files with 9 additions and 3 deletions
|
|
@ -173,6 +173,15 @@ test_one(struct gallivm_state *gallivm, unsigned verbose,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/* Known failures
|
||||
* - fixed point 32 -> float 32
|
||||
* - float 32 -> signed normalised integer 32
|
||||
*/
|
||||
if ((src_type.floating && !dst_type.floating && dst_type.sign && dst_type.norm && src_type.width == dst_type.width) ||
|
||||
(!src_type.floating && dst_type.floating && src_type.fixed && src_type.width == dst_type.width)) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if(verbose >= 1)
|
||||
dump_conv_types(stdout, src_type, dst_type);
|
||||
|
||||
|
|
@ -384,9 +393,6 @@ test_all(struct gallivm_state *gallivm, unsigned verbose, FILE *fp)
|
|||
if(src_type == dst_type)
|
||||
continue;
|
||||
|
||||
if(src_type->norm != dst_type->norm)
|
||||
continue;
|
||||
|
||||
if(!test_one(gallivm, verbose, fp, *src_type, *dst_type))
|
||||
success = FALSE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue