blob: 80a693456463a0694005ba9b1730a4da0216c1ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//DIAGNOSTIC_TEST:SIMPLE: -target hlsl -entry computeMain -stage compute
//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0], stride=16):out
RWStructuredBuffer<int> outputBuffer;
// Previously this definition would lead to an infinite loop in parsing.
int doThing<1>() { return 2; }
[numthreads(4, 4, 1)]
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
int index = dispatchThreadID.x;
outputBuffer[index] = index;
}
|