10 releases (stable)

Uses old Rust 2015

2.1.1 Jan 30, 2025
2.0.3 Jun 29, 2019
2.0.2 Aug 25, 2018
2.0.1 Dec 22, 2017
0.1.2 May 11, 2016

#626 in Hardware support

Download history 13/week @ 2024-11-18 21/week @ 2024-11-25 130/week @ 2024-12-02 201/week @ 2024-12-09 66/week @ 2024-12-16 43/week @ 2024-12-23 55/week @ 2024-12-30 72/week @ 2025-01-06 69/week @ 2025-01-13 57/week @ 2025-01-20 164/week @ 2025-01-27 87/week @ 2025-02-03 64/week @ 2025-02-10 50/week @ 2025-02-17 52/week @ 2025-02-24 23/week @ 2025-03-03

198 downloads per month
Used in openvr

MIT license

1MB
25K SLoC

Rust 14K SLoC // 0.0% comments C++ 7K SLoC // 0.1% comments C# 4.5K SLoC // 0.0% comments

openvr-sys

Contains function definitions for the OpenVR library. Use the openvr crate, unless you know what you are doing.

Instructions for updating OpenVR

  1. git submodule update --init --recursive (initial checkout only)
  2. git submodule foreach git pull origin master to update the submodule
  3. cargo build --features "buildtime_bindgen" to update the bindings
  4. Apply the workaround for broken OpenVR ABIs, if required

Workaround for broken OpenVR ABIs (Linux/macOS only)

Search for packed structs in headers/openvr.h, i.e., #pragma pack( push, 4 ). Currently, that is:

VRControllerState_t
RenderModel_TextureMap_t
RenderModel_t
VREvent_t

Depending on what bindgen did parse, you have to replace a bunch of #[repr(C)] and #[repr(C, packed(4))] precending those structs in bindings.rs with:

#[repr(C)]
#[cfg_attr(unix, repr(packed(4)))]

No runtime deps

~0–1MB
~11K SLoC