Struct glium::program::ComputeShader
[−]
[src]
pub struct ComputeShader { /* fields omitted */ }
A combination of compute shaders linked together.
Methods
impl ComputeShader
[src]
pub fn is_supported<C: ?Sized>(ctxt: &C) -> bool where
C: CapabilitiesSource,
[src]
C: CapabilitiesSource,
Returns true if the backend supports compute shaders.
pub fn from_source<F: ?Sized>(
facade: &F,
src: &str
) -> Result<ComputeShader, ProgramCreationError> where
F: Facade,
[src]
facade: &F,
src: &str
) -> Result<ComputeShader, ProgramCreationError> where
F: Facade,
Builds a new compute shader from some source code.
pub fn from_binary<F: ?Sized>(
facade: &F,
data: Binary
) -> Result<ComputeShader, ProgramCreationError> where
F: Facade,
[src]
facade: &F,
data: Binary
) -> Result<ComputeShader, ProgramCreationError> where
F: Facade,
Builds a new compute shader from some binary.
pub fn execute<U>(&self, uniforms: U, x: u32, y: u32, z: u32) where
U: Uniforms,
[src]
U: Uniforms,
Executes the compute shader.
x * y * z
work groups will be started. The current work group can be retreived with
gl_WorkGroupID
. Inside each work group, additional local work groups can be started
depending on the attributes of the compute shader itself.
pub fn execute_indirect<U>(
&self,
uniforms: U,
buffer: BufferSlice<ComputeCommand>
) where
U: Uniforms,
[src]
&self,
uniforms: U,
buffer: BufferSlice<ComputeCommand>
) where
U: Uniforms,
Executes the compute shader.
This is similar to execute
, except that the parameters are stored in a buffer.
pub fn get_binary(&self) -> Result<Binary, GetBinaryError>
[src]
Returns the program's compiled binary.
You can store the result in a file, then reload it later. This avoids having to compile the source code every time.
pub fn get_uniform(&self, name: &str) -> Option<&Uniform>
[src]
Returns informations about a uniform variable, if it exists.
pub fn uniforms(&self) -> Iter<String, Uniform>
[src]
Returns an iterator to the list of uniforms.
Example
for (name, uniform) in program.uniforms() { println!("Name: {} - Type: {:?}", name, uniform.ty); }
pub fn get_uniform_blocks(
&self
) -> &HashMap<String, UniformBlock, BuildHasherDefault<FnvHasher>>
[src]
&self
) -> &HashMap<String, UniformBlock, BuildHasherDefault<FnvHasher>>
Returns a list of uniform blocks.
Example
for (name, uniform) in program.get_uniform_blocks() { println!("Name: {}", name); }
pub fn get_shader_storage_blocks(
&self
) -> &HashMap<String, UniformBlock, BuildHasherDefault<FnvHasher>>
[src]
&self
) -> &HashMap<String, UniformBlock, BuildHasherDefault<FnvHasher>>
Returns the list of shader storage blocks.
Example
for (name, uniform) in program.get_shader_storage_blocks() { println!("Name: {}", name); }
Trait Implementations
impl Debug for ComputeShader
[src]
fn fmt(&self, formatter: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.