mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-01 07:01:12 +00:00
7 lines
142 B
GLSL
7 lines
142 B
GLSL
float4 AmbientColor = float4(1, 0.5, 0, 1);
|
|
|
|
float4 ShaderFunction(float4 input) : COLOR0
|
|
{
|
|
return input.wwyx * float4(AmbientColor.z);
|
|
}
|