XMGLOBALCONST macro
Declares an object to be a pick-any constant, to avoid redundant reloads of that object if it is used (and declared) in multiple places in the DirectXMath Library.
#define XMGLOBALCONST extern const __declspec(selectany)
Using XMGLOBALCONST permits the specification of global constants. This helps to reduce the size of an application's data segment, avoid redundant object creation and destruction, and reduce load and store operations.
Header: Declared in DirectXMath.h.