Trait openal::Context [] [src]

pub unsafe trait Context {
    fn as_ptr(&self) -> *const ALCcontext;

    fn as_mut_ptr(&mut self) -> *mut ALCcontext { ... }
}

Internal trait specifying the type is an OpenAL context.

Required Methods

Return a *const pointer for the context.

Provided Methods

Return a *mut pointer for the context.

Trait Implementations

impl Device for Context
[src]

Return a *const pointer for the device.

Return a *mut pointer for the device.

Implementors