[][src]Struct glium::BlitTarget

pub struct BlitTarget {
    pub left: u32,
    pub bottom: u32,
    pub width: i32,
    pub height: i32,
}

Area of a surface in pixels. Similar to a Rect except that dimensions can be negative.

In the OpenGL ecosystem, the (0,0) coordinate is at the bottom-left hand corner of the images.

Fields

left: u32

Number of pixels between the left border of the surface and the left border of the rectangle.

bottom: u32

Number of pixels between the bottom border of the surface and the bottom border of the rectangle.

width: i32

Width of the area in pixels. Can be negative.

height: i32

Height of the area in pixels. Can be negative.

Trait Implementations

impl Clone for BlitTarget[src]

impl Copy for BlitTarget[src]

impl Debug for BlitTarget[src]

impl Default for BlitTarget[src]

impl Eq for BlitTarget[src]

impl PartialEq<BlitTarget> for BlitTarget[src]

impl StructuralEq for BlitTarget[src]

impl StructuralPartialEq for BlitTarget[src]

Auto Trait Implementations

impl RefUnwindSafe for BlitTarget

impl Send for BlitTarget

impl Sync for BlitTarget

impl Unpin for BlitTarget

impl UnwindSafe for BlitTarget

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> Content for T where
    T: Copy
[src]

type Owned = T

A type that holds a sized version of the content.

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.