glslang/Test/hlsl.float4.frag
2016-05-16 17:39:50 -06:00

7 lines
127 B
GLSL

float4 AmbientColor = float4(1, 0.5, 0, 1);
float4 ShaderFunction(float4 input) : COLOR0
{
return input * AmbientColor;
}