summaryrefslogtreecommitdiffstats
path: root/tests/spirv/global-compute.slang
blob: 1af3bfe5bbece11f8f31a445aa843ba710a61785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//TEST:SIMPLE(filecheck=CHECK): -stage compute -target spirv -emit-spirv-directly -entry main

RWStructuredBuffer<float> output;
static const int vmin = min(1,2);

// CHECK: OpEntryPoint

[numthreads(1,1,1)]
void main()
{
    output[0] = vmin;
}