Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-01 | update (passing) reference shaders w/ @const | Rob Clark | 1 | -18/+13 | |
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 | |||||
2014-11-01 | update reference shaders | Rob Clark | 1 | -1/+31 | |
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. | |||||
2014-10-25 | initial commit | Rob Clark | 1 | -0/+2 | |