expp - vs
提供部分精確度指數 2x。
Syntax
expp dst, src.{x|y|z|w} |
---|
其中:
- dst 是目的地暫存器。
- src 是來源暫存器。 來源暫存器需要明確使用複寫wizzle,也就是說,必須指定其中一個 .x、.y、.z、.w swizzle 元件 (或 .r、.g、.b、.a 對等專案) 。
- {x|y|z|w} 是來源暫存器上所需的複寫 swizzle。
備註
頂點著色器版本 | 1_1 | 2_0 | 2_x | 2_sw | 3_0 | 3_sw |
---|---|---|---|---|---|---|
expp | x | x | x | x | x | x |
vs_1_1
exp - vs指令會根據頂點著色器版本以不同的方式運作。
在vs_1_1中,expp 指示會提供下列結果:
v = the scalar value from the source register with a replicate swizzle
dest.x = pow(2, floor(v))
dest.y = v - floor(v)
dest.z = pow(2, v) (partial-precision)
dest.w = 1
在vs_2_0和更新版本中,expp 指示會提供下列結果:
v = the scalar value from the source register with a replicate swizzle
dest.x = dest.y = dest.z = dest.y = pow(2, v) (partial-precision)
vs_2_0
在vs_2_0和更新版本中,指示的運作方式如下:
float V = the scalar value from the source register with a replicate swizzle
dest.x = dest.y = dest.z = dest.y = pow( 2, V ) (partial-precision)
指令提供至少 10 位的有效位數。
相關主題