hlsl.swizzle.frag 149 B

1234567
  1. static float4 AmbientColor = float4(1, 0.5, 0, 1);
  2. float4 ShaderFunction(float4 input) : COLOR0
  3. {
  4. return input.wwyx * float4(AmbientColor.z);
  5. }