Searched refs:GraphicsPipelineAbstract (Results 1 – 10 of 10) sorted by relevance
/external/rust/crates/vulkano/src/pipeline/graphics_pipeline/ |
D | mod.rs | 201 pub unsafe trait GraphicsPipelineAbstract: interface 241 unsafe impl<Mv> GraphicsPipelineAbstract for GraphicsPipeline<Mv> 307 unsafe impl<T> GraphicsPipelineAbstract for T 310 T::Target: GraphicsPipelineAbstract, 314 GraphicsPipelineAbstract::inner(&**self) in inner() 396 impl PartialEq for dyn GraphicsPipelineAbstract + Send + Sync { 399 GraphicsPipelineAbstract::inner(self).0 == GraphicsPipelineAbstract::inner(other).0 in eq() 404 impl Eq for dyn GraphicsPipelineAbstract + Send + Sync {} 406 impl Hash for dyn GraphicsPipelineAbstract + Send + Sync { 409 GraphicsPipelineAbstract::inner(self).0.hash(state); in hash()
|
/external/rust/crates/vulkano/src/command_buffer/validity/ |
D | vertex_buffers.rs | 16 use crate::pipeline::GraphicsPipelineAbstract; 30 GP: GraphicsPipelineAbstract + DeviceOwned + VertexSource<V>, in check_vertex_buffers()
|
D | dynamic_state.rs | 14 use crate::pipeline::GraphicsPipelineAbstract; 22 Pl: GraphicsPipelineAbstract, in check_dynamic_state_validity()
|
/external/rust/crates/vulkano/src/command_buffer/ |
D | state_cacher.rs | 15 use crate::pipeline::GraphicsPipelineAbstract; 159 P: GraphicsPipelineAbstract, in bind_graphics_pipeline() 161 let inner = GraphicsPipelineAbstract::inner(pipeline).internal_object(); in bind_graphics_pipeline()
|
D | auto.rs | 58 use crate::pipeline::GraphicsPipelineAbstract; 464 Gp: ?Sized + GraphicsPipelineAbstract, in ensure_inside_render_pass_inline() argument 1165 …Gp: GraphicsPipelineAbstract + VertexSource<V> + Send + Sync + 'static + Clone, // TODO: meh for C… in draw() 1239 …Gp: GraphicsPipelineAbstract + VertexSource<V> + Send + Sync + 'static + Clone, // TODO: meh for C… in draw_indirect() 1329 …Gp: GraphicsPipelineAbstract + VertexSource<V> + Send + Sync + 'static + Clone, // TODO: meh for C… in draw_indexed() 1416 …Gp: GraphicsPipelineAbstract + VertexSource<V> + Send + Sync + 'static + Clone, // TODO: meh for C… in draw_indexed_indirect()
|
D | sys.rs | 37 use crate::pipeline::GraphicsPipelineAbstract; 394 Gp: ?Sized + GraphicsPipelineAbstract, in bind_pipeline_graphics() argument 398 let inner = GraphicsPipelineAbstract::inner(pipeline).internal_object(); in bind_pipeline_graphics()
|
/external/rust/crates/vulkano/src/pipeline/ |
D | mod.rs | 83 pub use self::graphics_pipeline::GraphicsPipelineAbstract;
|
/external/rust/crates/vulkano/src/command_buffer/synced/ |
D | builder.rs | 30 use crate::pipeline::{ComputePipelineAbstract, GraphicsPipelineAbstract, PipelineBindPoint}; 638 pub(crate) fn bound_pipeline_graphics(&self) -> Option<&dyn GraphicsPipelineAbstract> { in bound_pipeline_graphics() argument
|
D | mod.rs | 83 use crate::pipeline::{ComputePipelineAbstract, GraphicsPipelineAbstract}; 503 fn bound_pipeline_graphics(&self) -> &dyn GraphicsPipelineAbstract { in bound_pipeline_graphics() argument
|
D | commands.rs | 41 use crate::pipeline::GraphicsPipelineAbstract; 282 Gp: GraphicsPipelineAbstract + Send + Sync + 'static, in bind_pipeline_graphics() 290 Gp: GraphicsPipelineAbstract + Send + Sync + 'static, in bind_pipeline_graphics() 300 fn bound_pipeline_graphics(&self) -> &dyn GraphicsPipelineAbstract { in bind_pipeline_graphics() argument
|