[][src]Struct rendy_wsi::Surface

pub struct Surface<B: Backend> { /* fields omitted */ }

Rendering target bound to window.

Methods

impl<B> Surface<B> where
    B: Backend
[src]

pub fn new(instance: &Box<dyn Any>, window: Arc<Window>) -> Self[src]

Create surface for the window.

pub fn kind(&self) -> Kind[src]

Get surface image kind.

pub fn aspect(&self) -> f32[src]

Get width to hight ratio.

pub unsafe fn format(&self, physical_device: &B::PhysicalDevice) -> Format[src]

Get surface ideal format.

pub unsafe fn into_target(
    self,
    physical_device: &B::PhysicalDevice,
    device: &impl Device<B>,
    image_count: u32,
    usage: Usage
) -> Result<Target<B>, Error>
[src]

Cast surface into render target.

pub fn window(&self) -> &Window[src]

Get a reference to the internal window.

Trait Implementations

impl<B> Debug for Surface<B> where
    B: Backend
[src]

Auto Trait Implementations

impl<B> Send for Surface<B> where
    <B as Backend>::Surface: Send

impl<B> Sync for Surface<B> where
    <B as Backend>::Surface: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Supports for T[src]

impl<T> Erased for T