Trait gfx_core::command::Buffer [−][src]
An interface of the abstract command buffer. It collects commands in an efficient API-specific manner, to be ready for execution on the device.
Required methods
fn reset(&mut self)
[src]
Reset the command buffer contents, retain the allocated storage
fn bind_pipeline_state(&mut self, _: R::PipelineStateObject)
[src]
Bind a pipeline state object
fn bind_vertex_buffers(&mut self, _: VertexBufferSet<R>)
[src]
Bind a complete set of vertex buffers
fn bind_constant_buffers(&mut self, _: &[ConstantBufferParam<R>])
[src]
Bind a complete set of constant buffers
fn bind_global_constant(&mut self, _: Location, _: UniformValue)
[src]
Bind a global constant
fn bind_resource_views(&mut self, _: &[ResourceViewParam<R>])
[src]
Bind a complete set of shader resource views
fn bind_unordered_views(&mut self, _: &[UnorderedViewParam<R>])
[src]
Bind a complete set of unordered access views
fn bind_samplers(&mut self, _: &[SamplerParam<R>])
[src]
Bind a complete set of samplers
fn bind_pixel_targets(&mut self, _: PixelTargetSet<R>)
[src]
Bind a complete set of pixel targets, including multiple colors views and an optional depth/stencil view.
fn bind_index(&mut self, _: R::Buffer, _: IndexType)
[src]
Bind an index buffer
fn set_scissor(&mut self, _: Rect)
[src]
Set scissor rectangle
fn set_ref_values(&mut self, _: RefValues)
[src]
Set reference values for the blending and stencil front/back
fn copy_buffer(
&mut self,
src: R::Buffer,
dst: R::Buffer,
src_offset_bytes: usize,
dst_offset_bytes: usize,
size_bytes: usize
)
[src]
&mut self,
src: R::Buffer,
dst: R::Buffer,
src_offset_bytes: usize,
dst_offset_bytes: usize,
size_bytes: usize
)
Copy part of a buffer to another
fn copy_buffer_to_texture(
&mut self,
src: R::Buffer,
src_offset_bytes: usize,
dst: TextureCopyRegion<R::Texture>
)
[src]
&mut self,
src: R::Buffer,
src_offset_bytes: usize,
dst: TextureCopyRegion<R::Texture>
)
Copy part of a buffer to a texture
fn copy_texture_to_buffer(
&mut self,
src: TextureCopyRegion<R::Texture>,
dst: R::Buffer,
dst_offset_bytes: usize
)
[src]
&mut self,
src: TextureCopyRegion<R::Texture>,
dst: R::Buffer,
dst_offset_bytes: usize
)
Copy part of a texture to a buffer
fn copy_texture_to_texture(
&mut self,
src: TextureCopyRegion<R::Texture>,
dst: TextureCopyRegion<R::Texture>
)
[src]
&mut self,
src: TextureCopyRegion<R::Texture>,
dst: TextureCopyRegion<R::Texture>
)
Copy part of one texture into another
fn update_buffer(&mut self, _: R::Buffer, data: &[u8], offset: usize)
[src]
Update a vertex/index/uniform buffer
fn update_texture(&mut self, _: TextureCopyRegion<R::Texture>, data: &[u8])
[src]
Update a texture
fn generate_mipmap(&mut self, _: R::ShaderResourceView)
[src]
fn clear_color(&mut self, _: R::RenderTargetView, _: ClearColor)
[src]
Clear color target
fn clear_depth_stencil(
&mut self,
_: R::DepthStencilView,
_: Option<Depth>,
_: Option<Stencil>
)
[src]
&mut self,
_: R::DepthStencilView,
_: Option<Depth>,
_: Option<Stencil>
)
fn call_draw(
&mut self,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
[src]
&mut self,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
Draw a primitive
fn call_draw_indexed(
&mut self,
_: VertexCount,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
[src]
&mut self,
_: VertexCount,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
Draw a primitive with index buffer
Implementors
impl Buffer<DummyResources> for DummyCommandBuffer
[src]
fn reset(&mut self)
[src]
fn bind_pipeline_state(&mut self, _: ())
[src]
fn bind_vertex_buffers(&mut self, _: VertexBufferSet<DummyResources>)
[src]
fn bind_constant_buffers(&mut self, _: &[ConstantBufferParam<DummyResources>])
[src]
fn bind_global_constant(&mut self, _: Location, _: UniformValue)
[src]
fn bind_resource_views(&mut self, _: &[ResourceViewParam<DummyResources>])
[src]
fn bind_unordered_views(&mut self, _: &[UnorderedViewParam<DummyResources>])
[src]
fn bind_samplers(&mut self, _: &[SamplerParam<DummyResources>])
[src]
fn bind_pixel_targets(&mut self, _: PixelTargetSet<DummyResources>)
[src]
fn bind_index(&mut self, _: (), _: IndexType)
[src]
fn set_scissor(&mut self, _: Rect)
[src]
fn set_ref_values(&mut self, _: RefValues)
[src]
fn copy_buffer(&mut self, _: (), _: (), _: usize, _: usize, _: usize)
[src]
fn copy_buffer_to_texture(&mut self, _: (), _: usize, _: TextureCopyRegion<()>)
[src]
fn copy_texture_to_buffer(&mut self, _: TextureCopyRegion<()>, _: (), _: usize)
[src]
fn copy_texture_to_texture(
&mut self,
_: TextureCopyRegion<()>,
_: TextureCopyRegion<()>
)
[src]
&mut self,
_: TextureCopyRegion<()>,
_: TextureCopyRegion<()>
)
fn update_buffer(&mut self, _: (), _: &[u8], _: usize)
[src]
fn update_texture(&mut self, _: TextureCopyRegion<()>, _: &[u8])
[src]
fn generate_mipmap(&mut self, _: ())
[src]
fn clear_color(&mut self, _: (), _: ClearColor)
[src]
fn clear_depth_stencil(&mut self, _: (), _: Option<Depth>, _: Option<Stencil>)
[src]
fn call_draw(
&mut self,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
[src]
&mut self,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
fn call_draw_indexed(
&mut self,
_: VertexCount,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)
[src]
&mut self,
_: VertexCount,
_: VertexCount,
_: VertexCount,
_: Option<InstanceParams>
)