2023-01-06 02:25:06 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-02 20:48:48 +00:00
|
|
|
int tint_workgroupUniformLoad(inout int p) {
|
2023-01-06 02:25:06 +00:00
|
|
|
GroupMemoryBarrierWithGroupSync();
|
2023-03-02 20:48:48 +00:00
|
|
|
const int result = p;
|
2023-01-06 02:25:06 +00:00
|
|
|
GroupMemoryBarrierWithGroupSync();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-03-02 20:48:48 +00:00
|
|
|
groupshared int a;
|
2023-01-06 02:25:06 +00:00
|
|
|
groupshared int b;
|
|
|
|
|
|
|
|
void foo() {
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while (true) {
|
|
|
|
const int tint_symbol = i;
|
2023-03-02 20:48:48 +00:00
|
|
|
const int tint_symbol_1 = tint_workgroupUniformLoad(a);
|
2023-01-06 02:25:06 +00:00
|
|
|
if (!((tint_symbol < tint_symbol_1))) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const int tint_symbol_2 = i;
|
2023-03-02 20:48:48 +00:00
|
|
|
const int tint_symbol_3 = tint_workgroupUniformLoad(b);
|
2023-01-06 02:25:06 +00:00
|
|
|
i = (tint_symbol_2 + tint_symbol_3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|