struct CrossDomainContext {
    channels: Option<Vec<RutabagaChannel>>,
    gralloc: Arc<Mutex<RutabagaGralloc>>,
    state: Option<Arc<CrossDomainState>>,
    context_resources: Arc<Mutex<BTreeMap<u32, CrossDomainResource>>>,
    item_state: Arc<Mutex<CrossDomainItems>>,
    fence_handler: RutabagaFenceHandler,
    worker_thread: Option<JoinHandle<RutabagaResult<()>>>,
    resample_evt: Option<Event>,
    kill_evt: Option<Event>,
}

Fields§

§channels: Option<Vec<RutabagaChannel>>§gralloc: Arc<Mutex<RutabagaGralloc>>§state: Option<Arc<CrossDomainState>>§context_resources: Arc<Mutex<BTreeMap<u32, CrossDomainResource>>>§item_state: Arc<Mutex<CrossDomainItems>>§fence_handler: RutabagaFenceHandler§worker_thread: Option<JoinHandle<RutabagaResult<()>>>§resample_evt: Option<Event>§kill_evt: Option<Event>

Implementations§

source§

impl CrossDomainContext

source

fn get_connection(&mut self, cmd_init: &CrossDomainInit) -> RutabagaResult<Tube>

source

fn initialize(&mut self, cmd_init: &CrossDomainInit) -> RutabagaResult<()>

source

fn get_image_requirements( &mut self, cmd_get_reqs: &CrossDomainGetImageRequirements ) -> RutabagaResult<()>

source

fn send( &mut self, cmd_send: &CrossDomainSendReceive, opaque_data: &[u8] ) -> RutabagaResult<()>

source

fn write( &self, cmd_write: &CrossDomainReadWrite, opaque_data: &[u8] ) -> RutabagaResult<()>

Trait Implementations§

source§

impl Drop for CrossDomainContext

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl RutabagaContext for CrossDomainContext

source§

fn context_create_blob( &mut self, resource_id: u32, resource_create_blob: ResourceCreateBlob, handle_opt: Option<RutabagaHandle> ) -> RutabagaResult<RutabagaResource>

Implementations must return a RutabagaResource given the resource_create_blob parameters.
source§

fn submit_cmd( &mut self, commands: &mut [u8], _fence_ids: &[u64], _shareable_fences: Vec<RutabagaHandle> ) -> RutabagaResult<()>

Implementations must handle the context-specific command stream.
source§

fn attach(&mut self, resource: &mut RutabagaResource)

Implementations may use resource in this context’s command stream.
source§

fn detach(&mut self, resource: &RutabagaResource)

Implementations must stop using resource in this context’s command stream.
source§

fn context_create_fence( &mut self, fence: RutabagaFence ) -> RutabagaResult<Option<RutabagaHandle>>

Implementations must create a fence on specified ring_idx in fence. This allows for multiple synchronizations timelines per RutabagaContext. Read more
source§

fn component_type(&self) -> RutabagaComponentType

Implementations must return the component type associated with the context.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.