xrt: Add a Matrix4x4 with f64

This commit is contained in:
Jakob Bornecrantz 2021-07-29 23:55:16 +01:00
parent 0f5ce8c173
commit 521f066e72

View file

@ -402,6 +402,16 @@ struct xrt_matrix_4x4
float v[16];
};
/*!
* A tightly packed 4x4 matrix of double.
*
* @ingroup xrt_iface math
*/
struct xrt_matrix_4x4_f64
{
double v[16];
};
/*!
* A range of API versions supported.
*