次の方法で共有


endloop - vs

loop...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 は、loop - vs ブロックの最後の命令の後に指定しなければなりません。

loop aL, i3
    add r1, r0, c2[ aL ]
endloop