1void foo1() {} 2void foo2(void) {} 3 4void PixelShaderFunction(float4 input) : COLOR0 5{ 6 foo1(); 7 foo2(); 8 return; 9}