css_enhanced_waf/materialsystem/stdshaders/genwaterloop.pl

10 lines
221 B
Perl
Raw Normal View History

2020-04-22 17:56:21 +01:00
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";