XMUBYTEN4::XMUBYTEN4(constuint8_t*) function (directxpackedvector.h)

Initializes a new instance of XMUBYTEN4 from a four element uint8_t array argument.

This constructor initializes a new instance of XMUBYTEN4 from a four element uint8_t array argument.

Note  This constructor is only available under C++.

Syntax

void XMUBYTEN4(
  const uint8_t *pArray
) noexcept;

Parameters

pArray

Four element uint8_t array containing the values used to initialize the four components of a new instance of XMUBYTEN4.

Return value

None

Remarks

Input values are not normalized. The following pseudocode demonstrates the operation of this constructor:

XMUBYTEN4 instance;
instance.x = pArray[0];
instance.y = pArray[1];
instance.z = pArray[2];
instance.w = pArray[3];

Requirements

Requirement Value
Target Platform Windows
Header directxpackedvector.h

See also

XMUBYTEN4

XMUBYTEN4 Constructors