Transforms a stream of 4D vectors by a given matrix.
XMFLOAT4* XMVector4TransformStream(
XMFLOAT4 *pOutputStream,
size_t OutputStride,
const XMFLOAT4 *pInputStream,
size_t InputStride,
size_t VectorCount,
CXMMATRIX M
)
pOutputStream
Type: XMFLOAT4 *
[out]
Address of the first XMFLOAT4 in the destination stream.
OutputStride
Type: size_t
[in]
Stride, in bytes, between vectors in the destination stream.
pInputStream
Type: XMFLOAT4 *
[in]
Address of the first XMFLOAT4 in the stream to be transformed.
InputStride
Type: size_t
[in]
Stride, in bytes, between vectors in the input stream.
VectorCount
Type: size_t
[in]
Number of vectors to transform.
M
Type: CXMMATRIX
[in]
Transformation matrix.
Type: XMFLOAT4 *
Returns the address of the first XMFLOAT4 in the destination stream.
Header: Declared in directxmath.h.