Age | Commit message (Collapse) | Author | Files | Lines |
|
for passing shaders, where reference shader did not contain @const, copy
the output shader over.
$ir3compiler $args $f >& $out
./ir3test $ref $out
res=$?
if [ $res = 0 ]; then
pass=$((pass + 1))
+ grep @const $out > /dev/null
+ outconst=$?
+ grep @const $ref > /dev/null
+ refconst=$?
+ if [ $outconst = 0 ] && [ $refconst != 0 ]; then
+ cp $out $ref
+ fi
else
|
|
|
|
|
|
|
|
Drop duplicate chrome shader, add a handful of shaders extracted from
piglit tests.
|
|
|
|
|
|
|
|
regenerate w/ --nocp since that is easier than visually inspecting
larger shaders, and gives correct output in a few cases where the
original RA would fail. We don't want shaders that are fixed by
new RA to be flagged as fail due to incorrect reference.
|
|
ir3_compiler was inadvertantly listing kill's in the outputs
|
|
|