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