1int PixelShaderFunction( 2 int a1, 3 int a2, 4 int a3, 5 int a4 6 ) : COLOR0 7{ 8 return (a1 * a2 + a3 << a4) + (a1 << a2 + a3 * a4); 9} 10