blob: 314388aa614cab89049022cb367195a1fa49238c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//TEST(compute):SIMPLE:-target hlsl -dump-repro repro.slang-repro
//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0], stride=4):out,name outputBuffer
RWStructuredBuffer<int> outputBuffer;
//TEST_INPUT:array(size=2):name g_aoa
RWStructuredBuffer<int> g_aoa[];
//TEST_INPUT:ubuffer(data=[1 2 3 4], stride=4):name=g_aoa[0]
//TEST_INPUT:ubuffer(data=[8 17 34], stride=4):name=g_aoa[1]
[numthreads(8, 1, 1)]
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
int index = int(dispatchThreadID.x);
int baseIndex = index >> 2;
int innerIndex = index & 3;
RWStructuredBuffer<int> buffer = g_aoa[baseIndex];
// Get the size
uint bufferCount, bufferStride;
buffer.GetDimensions(bufferCount, bufferStride);
if (innerIndex >= bufferCount)
{
innerIndex = bufferCount - 1;
}
outputBuffer[index] = buffer[innerIndex];
}
|