2015-01-26 14:16:42 -05:00
|
|
|
#if !defined(FLAGS_ADDED)
|
|
|
|
# error FLAGS_ADDED not defined
|
|
|
|
#endif
|
|
|
|
|
2014-08-28 09:53:24 -04:00
|
|
|
struct PixelShaderInput
|
|
|
|
{
|
|
|
|
float4 pos : SV_POSITION;
|
|
|
|
float3 color : COLOR0;
|
|
|
|
};
|
|
|
|
|
2014-12-02 01:41:10 -08:00
|
|
|
float4 mainPS(PixelShaderInput input) : SV_TARGET
|
2014-08-28 09:53:24 -04:00
|
|
|
{
|
|
|
|
return float4(input.color,1.0f);
|
|
|
|
}
|