1 2 3 4 5 6 7 8 9 10
float4 GetOutputColor(float4 rgba) { float4 output; output.rgb = rgba.rgb * color_scale; output.a = rgba.a; return output; }