?/TD>
Microsoft DirectX 9.0

m4x4 (Vertex Shader)


Computes the product of a 4-component vector and a 4x4 matrix.

Syntax

m4x4 dst, src0, src1

where

Remarks

Vertex shader versions1_12_02_x2_sw3_03_sw
m4x4xxxxxx

The xyzw (default) mask is required for the destination register. Negate and swizzle modifiers are allowed for src0, but not for src1.

This is a macro instruction, which takes four instruction slots. Swizzle and negate modifiers are invalid for the src0 register. The dest and src0 registers cannot be the same.

The following code fragment shows the operations performed.

dest.x = (src0.x * src1.x) + (src0.x * src1.y) + (src0.x * src1.z) + 
		(src0.x * src1.w);
dest.y = (src0.y * src1.x) + (src0.y * src1.y) + (src0.y * src1.z) + 
		(src0.y * src1.w);
dest.z = (src0.z * src1.x) + (src0.z * src1.y) + (src0.z * src1.z) + 
		(src0.z * src1.w);
dest.w = (src0.w * src1.x) + (src0.w * src1.y) + (src0.z * src1.z) + 
		(src0.w * src1.w);

The input vector is in register src0. The input 4x4 matrix is in register src1, and the next three higher registers, as shown in the expansion below.

This operation is commonly used for transforming a position by a projection matrix. This macro instruction is implemented as a series of dot products as shown here.

m4x4   r0.xyzw, r1, c0    will be expanded to:

dp4   r0.x, r1, c0
dp4   r0.y, r1, c1
dp4   r0.z, r1, c2
dp4   r0.w, r1, c3

Instruction Information

Minimum operating systemWindows 98


© 2002 Microsoft Corporation. All rights reserved.