Struct DummyRenderer

Source
pub struct DummyRenderer;
Available on crate feature renderer_test only.

Trait Implementations§

Source§

impl Debug for DummyRenderer

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DummyRenderer

Source§

fn default() -> DummyRenderer

Returns the “default value” for a type. Read more
Source§

impl ImportDma for DummyRenderer

Source§

fn import_dmabuf( &mut self, _dmabuf: &Dmabuf, _damage: Option<&[Rectangle<i32, Buffer>]>, ) -> Result<Self::TextureId, Self::Error>

Import a given raw dmabuf into the renderer. Read more
Source§

fn dmabuf_formats(&self) -> FormatSet

Returns supported formats for dmabufs.
Source§

fn has_dmabuf_format(&self, format: Format) -> bool

Test if a specific dmabuf Format is supported
Source§

impl ImportDmaWl for DummyRenderer

Available on crate feature wayland_frontend only.
Source§

fn import_dma_buffer( &mut self, buffer: &WlBuffer, _surface: Option<&SurfaceData>, damage: &[Rectangle<i32, BufferCoord>], ) -> Result<Self::TextureId, Self::Error>

Import a given dmabuf-based buffer into the renderer (see buffer_type). Read more
Source§

impl ImportEgl for DummyRenderer

Available on crate features wayland_frontend and use_system_lib and backend_egl only.
Source§

fn bind_wl_display(&mut self, _display: &DisplayHandle) -> Result<(), Error>

Binds the underlying EGL display to the given Wayland display. Read more
Source§

fn unbind_wl_display(&mut self)

Unbinds a previously bound egl display, if existing. Read more
Source§

fn egl_reader(&self) -> Option<&EGLBufferReader>

Returns the underlying EGLBufferReader. Read more
Source§

fn import_egl_buffer( &mut self, _buffer: &WlBuffer, _surface: Option<&SurfaceData>, _damage: &[Rectangle<i32, Buffer>], ) -> Result<Self::TextureId, Self::Error>

Import a given wl_drm-based buffer into the renderer (see buffer_type). Read more
Source§

impl ImportMem for DummyRenderer

Source§

fn import_memory( &mut self, _data: &[u8], _format: Fourcc, _size: Size<i32, Buffer>, _flipped: bool, ) -> Result<Self::TextureId, Self::Error>

Import a given chunk of memory into the renderer. Read more
Source§

fn update_memory( &mut self, _texture: &Self::TextureId, _data: &[u8], _region: Rectangle<i32, Buffer>, ) -> Result<(), Self::Error>

Update a portion of a given chunk of memory into an existing texture. Read more
Source§

fn mem_formats(&self) -> Box<dyn Iterator<Item = Fourcc>>

Returns supported formats for memory imports.
Source§

impl ImportMemWl for DummyRenderer

Available on crate feature wayland_frontend only.
Source§

fn import_shm_buffer( &mut self, buffer: &WlBuffer, surface: Option<&SurfaceData>, _damage: &[Rectangle<i32, Buffer>], ) -> Result<Self::TextureId, Self::Error>

Import a given shm-based buffer into the renderer (see buffer_type). Read more
Source§

fn shm_formats(&self) -> Box<dyn Iterator<Item = Format>>

Returns supported formats for shared memory buffers. Read more
Source§

impl Renderer for DummyRenderer

Source§

fn context_id(&self) -> ContextId<DummyTexture>

Returns the ContextId of this renderer Read more
Source§

fn downscale_filter( &mut self, _filter: TextureFilter, ) -> Result<(), Self::Error>

Set the filter method to be used when rendering a texture into a smaller area than its size
Source§

fn upscale_filter(&mut self, _filter: TextureFilter) -> Result<(), Self::Error>

Set the filter method to be used when rendering a texture into a larger area than its size
Source§

fn set_debug_flags(&mut self, _flags: DebugFlags)

Set the enabled DebugFlags
Source§

fn debug_flags(&self) -> DebugFlags

Returns the current enabled DebugFlags
Source§

fn render<'frame, 'buffer>( &'frame mut self, _target: &'frame mut DummyFramebuffer, _size: Size<i32, Physical>, _dst_transform: Transform, ) -> Result<DummyFrame, Self::Error>
where 'buffer: 'frame,

Initialize a rendering context on the provided framebuffer with given dimensions and transformation. Read more
Source§

fn wait(&mut self, sync: &SyncPoint) -> Result<(), Self::Error>

Wait for a SyncPoint to be signaled
Source§

fn cleanup_texture_cache(&mut self) -> Result<(), Self::Error>

Forcibly clean up the renderer internal texture cache Read more
Source§

impl RendererSuper for DummyRenderer

Source§

type Error = DummyError

Error type returned by the rendering operations of this renderer.
Source§

type TextureId = DummyTexture

Texture Handle type used by this renderer.
Source§

type Framebuffer<'buffer> = DummyFramebuffer

Framebuffer to draw onto
Source§

type Frame<'frame, 'buffer> = DummyFrame where Self: 'frame, 'buffer: 'frame

Type representing a currently in-progress frame during the Renderer::render-call

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> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<R> ImportAll for R

Source§

fn import_buffer( &mut self, buffer: &WlBuffer, surface: Option<&SurfaceData>, damage: &[Rectangle<i32, Buffer>], ) -> Option<Result<<R as RendererSuper>::TextureId, <R as RendererSuper>::Error>>

Available on crate feature wayland_frontend only.
Import a given buffer into the renderer. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more