blob: 4120dc0989d8aa8da6f06c2d081c0c03359eaa35 (
plain)
1
2
3
4
5
6
7
8
9
|
//TEST:SIMPLE(filecheck=WGSL): -target wgsl -stage vertex -entry main
//WGSL-DAG: @builtin(vertex_index)
//WGSL-DAG: @vertex
float4 main(uint vertexID : SV_VertexID) : SV_Position
{
return float4(1,1,1,1);
}
|