You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
352 B
13 lines
352 B
float4 AmbientColor = float4(1, 0.5, 0, 1);
|
|
float AmbientIntensity = 0.1;
|
|
|
|
float4 PixelShaderFunction(float4 input) : COLOR0
|
|
{
|
|
return input * AmbientIntensity + AmbientColor;
|
|
return input * input + input * input;
|
|
return input + input * input + input;
|
|
return ++input * -+-+--input;
|
|
return input++ + ++input;
|
|
return sin(input);
|
|
}
|