次の方法で共有


callnz bool - ps

0 以外の場合に呼び出します。ラベル インデックスでマークされた命令への条件付き呼び出しを実行します。

構文

callnz l#, [!]b#

この場合

  • l# は呼び出されるサブルーチンの開始をマークする label - ps です。
  • [!] は正負の反転修飾子です (省略可能)。
  • b# は ブール型定数レジスタ を示します。

解説 

ピクセル シェーダーのバージョン 1_1 1_2 1_3 1_4 2_0 2_x 2_sw 3_0 3_sw
callnz bool x x x x

この命令は、次の処理を行います。

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
}