[][src]Struct gpu::Program

pub struct Program { /* fields omitted */ }

A structure representing a GPU program.

Implementations

impl Program[src]

pub fn new(context: &Context) -> Self[src]

Creates a new 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 Drop for Program[src]

Auto Trait Implementations

impl !RefUnwindSafe for Program

impl !Send for Program

impl !Sync for Program

impl Unpin for Program

impl UnwindSafe for Program

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.