summaryrefslogtreecommitdiff
path: root/tests/projects/other/hlsl2spv_bin2obj/src/test.ps.hlsl
blob: 5c534d30b3f8e9faeaee6e41c7004734751619f0 (plain)
1
2
3
4
5
6
7
8
9
struct PSInput {
    float4 position : SV_POSITION;
    float2 texcoord : TEXCOORD0;
};

float4 main(PSInput input) : SV_TARGET {
    return float4(input.texcoord, 0.0, 1.0);
}