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) | 否 |