endloop — vs
Конец цикла... блок endloop.
Синтаксис
endloop |
---|
Комментарии
Версии вершинного шейдера | 1_1 | 2_0 | 2_x | 2_sw | 3_0 | 3_sw |
---|---|---|---|---|---|---|
endloop | x | x | x | x | x |
Эта инструкция работает, как показано здесь.
LoopCounter += LoopStep;
LoopInterationCount = LoopIterationCount - 1;
if (LoopIterationCount > 0)
Continue execution at the StartLoopOffset
Endloop должен соответствовать последней инструкции цикла — vs block.
Пример
loop aL, i3
add r1, r0, c2[ aL ]
endloop
Связанные темы