Struct glium::BlitTarget [] [src]

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 Eq for BlitTarget
[src]

impl PartialEq for BlitTarget
[src]

fn eq(&self, __arg_0: &BlitTarget) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &BlitTarget) -> bool

This method tests for !=.

impl Default for BlitTarget
[src]

fn default() -> BlitTarget

Returns the "default value" for a type. Read more

impl Copy for BlitTarget
[src]

impl Clone for BlitTarget
[src]

fn clone(&self) -> BlitTarget

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for BlitTarget
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.