continuec (sm4 - asm)
有條件地在目前迴圈的開頭繼續執行。
continuec{_z|_nz} src0.select_component |
---|
詞彙 | 描述 |
---|---|
src0 |
[in]要對其測試條件的元件。 |
備註
continuec 只能在 迴圈 或 endloop內使用。
下列範例示範如何使用 continuec 指令。
loop
if_na r0.x
break
endif
continuec_z r1.x // if all bits of r1.x are zero then
// continue at beginning of loop.
...
continuec_nz r3.y // if any bit in r3.y is set then
// continue at beginning of loop.
...
endloop
權杖格式包含著色器中對應迴圈指令的位移,方便使用。
本指示適用于下列著色器階段:
頂點著色器 | 幾何著色器 | 像素著色器 |
---|---|---|
x | x | x |
最小著色器模型
下列著色器模型中支援此函式。
著色器模型 | 支援 |
---|---|
著色器模型 5 | 是 |
著色器模型 4.1 | 是 |
著色器模型 4 | 是 |
著色器模型 3 (DirectX HLSL) | 否 |
著色器模型 2 (DirectX HLSL) | 否 |
著色器模型 1 (DirectX HLSL) | 否 |