float4 PSMain() : SV_Target { float MulBy2(float f); return float4(MulBy2(.25), 1, 0, 1); } float MulBy2(float f) { return f*2; }