summaryrefslogtreecommitdiff
path: root/reference/webgl-blob-frag.asm
AgeCommit message (Collapse)AuthorFilesLines
2015-04-01update (passing) reference shaders w/ @constRob Clark1-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-01update reference shadersRob Clark1-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-25initial commitRob Clark1-0/+2