Enum draw_state::state::RasterMethod
[−]
[src]
pub enum RasterMethod {
Point,
Line(LineWidth),
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. |