···130130 /*
131131 * A sub-class wants us to use these extents over the ones the
132132 * compositor preferred, this is probably due to the target only
133133- * upporting this size so we better respect those wishes.
133133+ * supporting this size so we better respect those wishes.
134134 */
135135 if (cts->override.compositor_extent) {
136136 preferred.width = cts->override.extent.width;
+1-1
src/xrt/compositor/render/render_util.c
···108108 m_mat4_f64_orientation(&new_q, &new_rot_inv); // This is a model matrix, a inverted view matrix.
109109 m_mat4_f64_invert(&new_rot_inv, &new_rot); // Invert to make it a view matrix.
110110111111- // Combine both rotation matricies to get difference.
111111+ // Combine both rotation matrices to get difference.
112112 struct xrt_matrix_4x4_f64 delta_rot, delta_rot_inv;
113113 m_mat4_f64_multiply(&new_rot, &src_rot_inv, &delta_rot);
114114 m_mat4_f64_invert(&delta_rot, &delta_rot_inv);