Creates a vector with identical floating-point components. Each component is a constant divided by two raised to an integer exponent.
XMVECTOR XMVectorSplatConstant(
int32_t IntConstant,
uint32_t DivExponent
)
IntConstant
Type: int32_t
This value will be converted to a floating-point number and divided by two raised to the DivExponent power. The result is replicated to each component of the returned vector.
The value of IntConstant must satisfy: -16 <= IntConstant <=15.
Note
This parameter must be a number (an immediate value) and not a variable.
DivExponent
Type: uint32_t
Describes the exponent applied to the quotient. This parameter must be a number (an immediate value) and not a variable.
Type: XMVECTOR
Returns an XMVECTOR with identical floating-point components. Each component is a constant divided by two raised to an integer exponent.
Header: Declared in directxmath.h.