Home | History | Annotate | Download | only in vulkan

Lines Matching defs:descriptorType

4464   enum class DescriptorType
4481 DescriptorPoolSize( DescriptorType type_ = DescriptorType::eSampler, uint32_t descriptorCount_ = 0 )
4498 DescriptorPoolSize& setType( DescriptorType type_ )
4526 DescriptorType type;
5952 WriteDescriptorSet( DescriptorSet dstSet_ = DescriptorSet(), uint32_t dstBinding_ = 0, uint32_t dstArrayElement_ = 0, uint32_t descriptorCount_ = 0, DescriptorType descriptorType_ = DescriptorType::eSampler, const DescriptorImageInfo* pImageInfo_ = nullptr, const DescriptorBufferInfo* pBufferInfo_ = nullptr, const BufferView* pTexelBufferView_ = nullptr )
5959 , descriptorType( descriptorType_ )
6013 WriteDescriptorSet& setDescriptorType( DescriptorType descriptorType_ )
6015 descriptorType = descriptorType_;
6050 && ( descriptorType == rhs.descriptorType )
6070 DescriptorType descriptorType;
9877 DescriptorSetLayoutBinding( uint32_t binding_ = 0, DescriptorType descriptorType_ = DescriptorType::eSampler, uint32_t descriptorCount_ = 0, ShaderStageFlags stageFlags_ = ShaderStageFlags(), const Sampler* pImmutableSamplers_ = nullptr )
9879 , descriptorType( descriptorType_ )
9903 DescriptorSetLayoutBinding& setDescriptorType( DescriptorType descriptorType_ )
9905 descriptorType = descriptorType_;
9935 && ( descriptorType == rhs.descriptorType )
9947 DescriptorType descriptorType;
19198 inline std::string to_string(DescriptorType value)
19202 case DescriptorType::eSampler: return "Sampler";
19203 case DescriptorType::eCombinedImageSampler: return "CombinedImageSampler";
19204 case DescriptorType::eSampledImage: return "SampledImage";
19205 case DescriptorType::eStorageImage: return "StorageImage";
19206 case DescriptorType::eUniformTexelBuffer: return "UniformTexelBuffer";
19207 case DescriptorType::eStorageTexelBuffer: return "StorageTexelBuffer";
19208 case DescriptorType::eUniformBuffer: return "UniformBuffer";
19209 case DescriptorType::eStorageBuffer: return "StorageBuffer";
19210 case DescriptorType
19211 case DescriptorType::eStorageBufferDynamic: return "StorageBufferDynamic";
19212 case DescriptorType::eInputAttachment: return "InputAttachment";