Searched refs:DescriptorSetLayoutCreationError (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/descriptor_set/ |
D | layout.rs | 51 ) -> Result<Arc<DescriptorSetLayout>, DescriptorSetLayoutCreationError> { in new() argument 111 ) -> Result<HashMap<DescriptorType, u32>, DescriptorSetLayoutCreationError> { in validate() argument 122 return Err(DescriptorSetLayoutCreationError::RequirementNotMet { in validate() 161 DescriptorSetLayoutCreationError::PushDescriptorDescriptorTypeIncompatible { in validate() 170 DescriptorSetLayoutCreationError::PushDescriptorVariableDescriptorCount { in validate() 184 … DescriptorSetLayoutCreationError::ImmutableSamplersDescriptorTypeIncompatible { in validate() 195 … DescriptorSetLayoutCreationError::ImmutableSamplersDescriptorTypeIncompatible { in validate() 205 DescriptorSetLayoutCreationError::ImmutableSamplersCountMismatch { in validate() 223 return Err(DescriptorSetLayoutCreationError::RequirementNotMet { in validate() 236 DescriptorSetLayoutCreationError::VariableDescriptorCountBindingNotHighest { in validate() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/pipeline/graphics/ |
D | creation_error.rs | 12 descriptor_set::layout::DescriptorSetLayoutCreationError, 161 DescriptorSetLayoutCreationError(DescriptorSetLayoutCreationError), enumerator 339 Self::DescriptorSetLayoutCreationError(_) => { in fmt() 410 impl From<DescriptorSetLayoutCreationError> for GraphicsPipelineCreationError { 411 fn from(err: DescriptorSetLayoutCreationError) -> Self { in from() 412 Self::DescriptorSetLayoutCreationError(err) in from()
|
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/pipeline/ |
D | compute.rs | 28 DescriptorSetLayout, DescriptorSetLayoutCreateInfo, DescriptorSetLayoutCreationError, 317 DescriptorSetLayoutCreationError(DescriptorSetLayoutCreationError), enumerator 330 Self::DescriptorSetLayoutCreationError(err) => Some(err), in source() 345 ComputePipelineCreationError::DescriptorSetLayoutCreationError(_) => { in fmt() 369 impl From<DescriptorSetLayoutCreationError> for ComputePipelineCreationError { 370 fn from(err: DescriptorSetLayoutCreationError) -> Self { in from() 371 Self::DescriptorSetLayoutCreationError(err) in from()
|