[][src]Struct raylib_sys::VrDeviceInfo

#[repr(C)]pub struct VrDeviceInfo {
    pub hResolution: c_int,
    pub vResolution: c_int,
    pub hScreenSize: f32,
    pub vScreenSize: f32,
    pub vScreenCenter: f32,
    pub eyeToScreenDistance: f32,
    pub lensSeparationDistance: f32,
    pub interpupillaryDistance: f32,
    pub lensDistortionValues: [f32; 4],
    pub chromaAbCorrection: [f32; 4],
}

Fields

hResolution: c_intvResolution: c_inthScreenSize: f32vScreenSize: f32vScreenCenter: f32eyeToScreenDistance: f32lensSeparationDistance: f32interpupillaryDistance: f32lensDistortionValues: [f32; 4]chromaAbCorrection: [f32; 4]

Trait Implementations

impl Clone for VrDeviceInfo[src]

impl Copy for VrDeviceInfo[src]

impl Debug for VrDeviceInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.