[][src]Enum surfman::SurfaceType

pub enum SurfaceType<NativeWidget> {
    Generic {
        size: Size2D<i32>,
    },
    Widget {
        native_widget: NativeWidget,
    },
}

Information specific to the type of surface: generic or widget.

Variants

Generic

An off-screen surface that has a pixel size. Generic surfaces can sometimes be shown on screen using platform-specific APIs, but surfman itself provides no way to draw their contents on screen. Only generic surfaces can be bound to textures.

Fields of Generic

size: Size2D<i32>

The size of the surface.

For HiDPI screens, this is a physical size, not a logical size.

Widget

A surface displayed inside a native widget (window or view). The size of a widget surface is automatically determined based on the size of the widget. (For example, if the widget is a window, the size of the surface will be the physical size of the window.) Widget surfaces cannot be bound to textures.

Fields of Widget

native_widget: NativeWidget

A native widget type specific to the backend.

For example, on Windows this wraps an HWND.

Auto Trait Implementations

impl<NativeWidget> RefUnwindSafe for SurfaceType<NativeWidget> where
    NativeWidget: RefUnwindSafe

impl<NativeWidget> Send for SurfaceType<NativeWidget> where
    NativeWidget: Send

impl<NativeWidget> Sync for SurfaceType<NativeWidget> where
    NativeWidget: Sync

impl<NativeWidget> Unpin for SurfaceType<NativeWidget> where
    NativeWidget: Unpin

impl<NativeWidget> UnwindSafe for SurfaceType<NativeWidget> where
    NativeWidget: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.