Home
last modified time | relevance | path

Searched defs:DescriptorPoolSize (Results 1 – 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawCreateInfoUtil.hpp255 class DescriptorPoolSize : public vk::VkDescriptorPoolSize class
258 DescriptorPoolSize (vk::VkDescriptorType _type, deUint32 _descriptorCount) in DescriptorPoolSize() function in vkt::Draw::DescriptorPoolSize
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp19831 struct DescriptorPoolSize struct
19836 …VULKAN_HPP_CONSTEXPR DescriptorPoolSize(VULKAN_HPP_NAMESPACE::DescriptorType type_ = VULKAN_HPP_NA… in DescriptorPoolSize() function
19845DescriptorPoolSize(VkDescriptorPoolSize const &rhs) VULKAN_HPP_NOEXCEPT : DescriptorPoolSize(*rein… in DescriptorPoolSize() function
19852 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DescriptorPoolSize const *>(&rhs); in operator =()
19857 …EXPR_14 DescriptorPoolSize &setType(VULKAN_HPP_NAMESPACE::DescriptorType type_) VULKAN_HPP_NOEXCEPT in setType()
19863 …_CONSTEXPR_14 DescriptorPoolSize &setDescriptorCount(uint32_t descriptorCount_) VULKAN_HPP_NOEXCEPT in setDescriptorCount()
19870 explicit operator VkDescriptorPoolSize const &() const VULKAN_HPP_NOEXCEPT in operator VkDescriptorPoolSize const&()
19875 explicit operator VkDescriptorPoolSize &() VULKAN_HPP_NOEXCEPT in operator VkDescriptorPoolSize&()
19886 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
19914 VULKAN_HPP_STATIC_ASSERT(sizeof(VULKAN_HPP_NAMESPACE::DescriptorPoolSize) == sizeof(VkDescriptorPoo…
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp19783 struct DescriptorPoolSize struct
19788 …VULKAN_HPP_CONSTEXPR DescriptorPoolSize( VULKAN_HPP_NAMESPACE::DescriptorType type_ = V… in DescriptorPoolSize() function
19797DescriptorPoolSize( VkDescriptorPoolSize const & rhs ) VULKAN_HPP_NOEXCEPT : DescriptorPoolSize( *… in DescriptorPoolSize() function
19804 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DescriptorPoolSize const *>( &rhs ); in operator =()
19809 …R_14 DescriptorPoolSize & setType( VULKAN_HPP_NAMESPACE::DescriptorType type_ ) VULKAN_HPP_NOEXCEPT in setType()
19815 …NSTEXPR_14 DescriptorPoolSize & setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT in setDescriptorCount()
19822 explicit operator VkDescriptorPoolSize const &() const VULKAN_HPP_NOEXCEPT in operator VkDescriptorPoolSize const&()
19827 explicit operator VkDescriptorPoolSize &() VULKAN_HPP_NOEXCEPT in operator VkDescriptorPoolSize&()
19838 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
19866 …VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorPoolSize ) == sizeof( VkDescript…
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp20701 struct DescriptorPoolSize struct
20707DescriptorPoolSize( VULKAN_HPP_NAMESPACE::DescriptorType type_ = VULKAN_HPP_NAMESPACE::DescriptorT… in DescriptorPoolSize() function
20715 DescriptorPoolSize( VkDescriptorPoolSize const & rhs ) VULKAN_HPP_NOEXCEPT in DescriptorPoolSize() function
20724 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DescriptorPoolSize const *>( &rhs ); in operator =()
20730 setType( VULKAN_HPP_NAMESPACE::DescriptorType type_ ) VULKAN_HPP_NOEXCEPT in setType()
20736 …NSTEXPR_14 DescriptorPoolSize & setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT in setDescriptorCount()
20743 explicit operator VkDescriptorPoolSize const &() const VULKAN_HPP_NOEXCEPT in operator VkDescriptorPoolSize const&()
20748 explicit operator VkDescriptorPoolSize &() VULKAN_HPP_NOEXCEPT in operator VkDescriptorPoolSize&()
20759 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
20787 …VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorPoolSize ) == sizeof( VkDescript…
/external/rust/crates/ash/src/vk/
Ddefinitions.rs4493 pub struct DescriptorPoolSize { struct
4497 impl DescriptorPoolSize { implementation
4533 pub fn build(self) -> DescriptorPoolSize { in build()