aboutsummaryrefslogtreecommitdiff
path: root/mp/src/materialsystem/stdshaders/genwaterloop.pl
blob: 0a4701ceef23cfbc6934352cfb689a1241f4c1a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
for($ix=-2;$ix<=2;$ix++)
{
	for($iy=-2;$iy<=2;$iy++)
	{
		print "vRefractColor += tex2D( RefractSampler, vRefractTexCoord + $ix * ddx1 + $iy * ddy1 );\n";
		$sumweights+=1;
	}
}
print "float sumweights = $sumweights;\n";