nrm - ps
Normalizzare un vettore 3D.
Sintassi
nrm dst, src |
---|
dove
- dst è il registro di destinazione.
- src è un registro di origine.
Commenti
Versioni del pixel shader | 1_1 | 1_2 | 1_3 | 1_4 | 2_0 | 2_x | 2_sw | 3_0 | 3_sw |
---|---|---|---|---|---|---|---|---|---|
nrm | x | x | x | x | x |
Questa istruzione funziona concettualmente come illustrato di seguito.
squareRootOfTheSum = (src0.x*src0.x + src0.y*src0.y + src0.z*src0.z)1/2;
dest.x = src0.x * (1 / squareRootOfTheSum);
dest.y = src0.y * (1 / squareRootOfTheSum);
dest.z = src0.z * (1 / squareRootOfTheSum);
dest.w = src0.w * (1 / squareRootOfTheSum);
I registri dest e src non possono essere uguali. Il registro dest deve essere un registro temporaneo.
Questa istruzione esegue l'interpolazione lineare in base alla formula seguente.
float f = src0.x*src0.x + src0.y*src0.y + src0.z*src0.z;
if (f != 0)
f = (float)(1/sqrt(f));
else
f = FLT_MAX;
dest.x = src0.x*f;
dest.y = src0.y*f;
dest.z = src0.z*f;
dest.w = src0.w*f;
Argomenti correlati