[][src]Struct hl_capture::engine::MainThreadData

pub struct MainThreadData {
    pub capture_parameters: Option<CaptureParameters>,
    pub capture_sound: bool,
    pub sound_remainder: f64,
    pub sound_capture_mode: SoundCaptureMode,
    pub inside_key_event: bool,
    pub inside_gl_setmode: bool,
    pub fps_converter: Option<FPSConverters>,
    pub encoder_pixel_format: Option<Pixel>,
    pub pro_que: MaybeUnavailable<ProQue>,
    pub ocl_yuv_buffers: MaybeUnavailable<(Buffer<u8>, Buffer<u8>, Buffer<u8>)>,
}

Global variables accessible from the main game thread.

Fields

capture_parameters: Option<CaptureParameters>capture_sound: boolsound_remainder: f64sound_capture_mode: SoundCaptureModeinside_key_event: boolinside_gl_setmode: boolfps_converter: Option<FPSConverters>encoder_pixel_format: Option<Pixel>pro_que: MaybeUnavailable<ProQue>ocl_yuv_buffers: MaybeUnavailable<(Buffer<u8>, Buffer<u8>, Buffer<u8>)>

Auto Trait Implementations

impl Unpin for MainThreadData

impl Sync for MainThreadData

impl Send for MainThreadData

impl RefUnwindSafe for MainThreadData

impl UnwindSafe for MainThreadData

Blanket Implementations

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

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

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.

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

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

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