aboutsummaryrefslogtreecommitdiff
path: root/mp/src/materialsystem/stdshaders/genwaterloop.pl
blob: 64ad0658fbdf0b539d3d36aad6812fdbbd8a06e5 (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";