mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-13 21:50:06 +00:00
8 lines
189 B
GLSL
8 lines
189 B
GLSL
float4 AmbientColor = float4(1, 0.5, 0, 1);
|
|
//float AmbientIntensity = 0.1;
|
|
|
|
float4 PixelShaderFunction(float4 input) : COLOR0
|
|
{
|
|
return input /* * AmbientIntensity */ + AmbientColor;
|
|
}
|