[−][src]Struct rendy_wsi::Surface
Rendering target bound to window.
Methods
impl<B> Surface<B> where
B: Backend,
[src]
B: Backend,
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]
self,
physical_device: &B::PhysicalDevice,
device: &impl Device<B>,
image_count: u32,
usage: Usage
) -> Result<Target<B>, Error>
Cast surface into render target.
pub fn window(&self) -> &Window
[src]
Get a reference to the internal window.
Trait Implementations
Auto Trait Implementations
impl<B> Send for Surface<B> where
<B as Backend>::Surface: Send,
<B as Backend>::Surface: Send,
impl<B> Sync for Surface<B> where
<B as Backend>::Surface: Sync,
<B as Backend>::Surface: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,