Enum gfx::device::state::RasterMethod [] [src]

pub enum RasterMethod {
    Point,
    Line(f32),
    Fill(CullFace),
}

How to rasterize a primitive.

Variants

Point

Rasterize as a point.

Line

Rasterize as a line with the given width.

Fill

Rasterize as a face with a given cull face mode.

Trait Implementations

Derived Implementations

impl Debug for RasterMethod

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

impl PartialEq<RasterMethod> for RasterMethod

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

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

impl Clone for RasterMethod

fn clone(&self) -> RasterMethod

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

impl Copy for RasterMethod