[][src]Struct gpu::RasterProgram

pub struct RasterProgram {
    pub program: Program,
}

A program for rasterizing VertexArrayObjects in a target Framebuffer.

Fields

program: Program

Program base object.

Implementations

impl RasterProgram[src]

pub fn new(
    context: &Context,
    fragment_shader: &FragmentShader,
    vertex_shader: &VertexShader
) -> Result<Self, String>
[src]

Creates a new RasterProgram with a FragmentShader and VertexShader.

pub fn raster(
    &self,
    framebuffer: &Framebuffer,
    vertex_array_object: &VertexArrayObject,
    raster_geometry: RasterGeometry,
    n_vertices: u32
)
[src]

Draws the n_vertices in a VertexArrayObject as the specified RasterGeometry on the target Framebuffer.

Methods from Deref<Target = Program>

pub fn resource(&self) -> <Context as HasContext>::Program[src]

Gets the ProgramResource object.

pub fn uniform_mat4(&mut self, location: usize, transpose: bool, v: &[f32])[src]

pub fn bind_texture_2d(
    &mut self,
    texture: &Texture2D,
    sampler: &Sampler,
    index: u32
)
[src]

Binds a Texture2D at index so it can be sampled with the specified sampler,

pub fn bind_vec2(&mut self, vec2: (f32, f32), index: u32)[src]

Trait Implementations

impl AsMut<Program> for RasterProgram[src]

impl AsRef<Program> for RasterProgram[src]

impl Borrow<Program> for RasterProgram[src]

impl BorrowMut<Program> for RasterProgram[src]

impl Deref for RasterProgram[src]

type Target = Program

The resulting type after dereferencing.

impl DerefMut for RasterProgram[src]

Auto Trait Implementations

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.