struct VirglRendererContext {
    ctx_id: u32,
}

Fields§

§ctx_id: u32

Trait Implementations§

source§

impl Drop for VirglRendererContext

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl RutabagaContext for VirglRendererContext

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 component_type(&self) -> RutabagaComponentType

Implementations must return the component type associated with the context.
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 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.

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.