The open source OpenXR runtime
0
fork

Configure Feed

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

xrt: Expose more information on frame servers

authored by

Jakob Bornecrantz and committed by
Jakob Bornecrantz
fa274863 18fb3e70

+9 -3
+2
doc/changes/xrt/mr.665.1.md
··· 1 + Expose more information on the frameservers, like product, manufacturer and 2 + serial.
+7 -3
src/xrt/include/xrt/xrt_frameserver.h
··· 67 67 */ 68 68 struct xrt_fs 69 69 { 70 - /*! 71 - * Name of the frame server source. 72 - */ 70 + //! Name of the frame server source, from the subsystem. 73 71 char name[512]; 72 + //! Frame server product identifier, matches the prober device. 73 + char product[32]; 74 + //! Frame server manufacturer, matches the prober device. 75 + char manufacturer[32]; 76 + //! Frame server serial number, matches the prober device. 77 + char serial[32]; 74 78 75 79 /*! 76 80 * All frames produced by this frameserver are tagged with this id.