Home
last modified time | relevance | path

Searched refs:DescriptorSetLayoutCreationError (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/descriptor_set/
Dlayout.rs51 ) -> 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()
184DescriptorSetLayoutCreationError::ImmutableSamplersDescriptorTypeIncompatible { in validate()
195DescriptorSetLayoutCreationError::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/
Dcreation_error.rs12 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/
Dcompute.rs28 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()