callnz bool - vs
Chiamare se non zero. Esegue una chiamata condizionale all'istruzione contrassegnata dall'indice dell'etichetta.
Sintassi
callnz l#, [!] B # |
---|
dove:
- dove l# è un'etichetta, anziché contrassegnare l'inizio della subroutine da chiamare.
- [!] è il modificatore BOolean NOT facoltativo.
- b# identifica un registro booleano costante.
Commenti
Versioni del vertex shader | 1_1 | 2_0 | 2_x | 2_sw | 3_0 | 3_sw |
---|---|---|---|---|---|---|
callnz bool | x | x | x | x | x |
Questa istruzione esegue le operazioni seguenti:
if (specified boolean register is not zero)
{
Push address of the next instruction to the return address stack.
Continue execution from the instruction marked by the label.
}
Questa istruzione utilizza uno slot di istruzioni vertex shader.
Argomenti correlati