The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xrt: Add xrt_vec2_i32

authored by

Pete Black and committed by
Ryan Pavlik
a0be6e13 8597ad5e

+12 -1
+12 -1
src/xrt/include/xrt/xrt_defines.h
··· 1 - // Copyright 2019, Collabora, Ltd. 1 + // Copyright 2019-2020, Collabora, Ltd. 2 2 // SPDX-License-Identifier: BSL-1.0 3 3 /*! 4 4 * @file ··· 145 145 int32_t x; 146 146 int32_t y; 147 147 int32_t z; 148 + }; 149 + 150 + /*! 151 + * A 2 element vector with 32 bit integers. 152 + * 153 + * @ingroup xrt_iface math 154 + */ 155 + struct xrt_vec2_i32 156 + { 157 + int32_t x; 158 + int32_t y; 148 159 }; 149 160 150 161 /*!