CMake/Tests/VSWinStorePhone/Direct3DApp1/SimplePixelShader.hlsl
Robert Goulet 4775c90145 VS: Add source file property to set extra hlsl shader flags
Create a VS_SHADER_FLAGS source file property so that we can set all
other Visual Studio .hlsl shader file compilation flags.
2015-01-28 09:29:50 -05:00

15 lines
238 B
HLSL

#if !defined(FLAGS_ADDED)
# error FLAGS_ADDED not defined
#endif
struct PixelShaderInput
{
float4 pos : SV_POSITION;
float3 color : COLOR0;
};
float4 mainPS(PixelShaderInput input) : SV_TARGET
{
return float4(input.color,1.0f);
}