mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-09 22:00:05 +00:00
Update test for updated block_is_noop check.
This commit is contained in:
parent
a61a541e1c
commit
9d8ef6b36c
@ -8,19 +8,9 @@ layout(binding = 0, std430) buffer SSBO
|
||||
|
||||
void main()
|
||||
{
|
||||
int i = 0;
|
||||
for (;;)
|
||||
for (int i = 0; i < 4; i++)
|
||||
{
|
||||
if (i < 4)
|
||||
{
|
||||
_23.v[i] += 10;
|
||||
i++;
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
}
|
||||
_23.v[i] += 10;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user