The open source OpenXR runtime
0
fork

Configure Feed

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

doc: Start a writing a driver document page

+17
+4
doc/mainpage.md
··· 4 4 Monado. And assumes that you have read [README.md][], the file also holdss 5 5 getting started information and general documentation. 6 6 7 + 8 + ## Useful pages 9 + * @ref md_writing-a-new-driver (**not complete**) 10 + 7 11 ## Source layout 8 12 9 13 * src/xrt/include - @ref xrt_iface defines the internal interfaces of Monado.
+13
doc/writing-a-new-driver.md
··· 1 + # Writing a new driver 2 + 3 + This document will tell you in broad strokes what you need to do to create a 4 + driver in Monado. Like the many ones already in there @ref drv. It is not a step 5 + by step guide to making a driver. Also what you need to do can vary a lot 6 + depending on the type of hardware you are adding a driver for and the level of 7 + features you want. 8 + 9 + ## Map 10 + 11 + The first components you will be interacting with is @ref st_prober find the 12 + hardware devices and setup a working system, along with the @ref aux code that 13 + provides various helpers. You can look at other @ref drv on how to start.