blob: 86d80cd514e525742beb10e1e39440cb732275da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// multiview.slang
// Confirm that the SPV_KHR_multiview and EXT_multiview extensions are compiled
// correctly
//TEST:CROSS_COMPILE:-target spirv-assembly -entry main -stage vertex
void main(uint viewId : SV_ViewID, out float4 p : SV_Position)
{
p = float4(viewId, 0, 0, 0);
}
|