Home
last modified time | relevance | path

Searched defs:PhysicalDeviceDescriptorIndexingProperties (Results 1 – 4 of 4) sorted by relevance

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp54982 struct PhysicalDeviceDescriptorIndexingProperties struct
54984 using NativeType = VkPhysicalDeviceDescriptorIndexingProperties;
54986 static const bool allowDuplicate = false;
54987 …ONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDescriptorIndexingProperties;
54990 …CONSTEXPR PhysicalDeviceDescriptorIndexingProperties( uint32_t maxUpdateAfterB… in PhysicalDeviceDescriptorIndexingProperties() function
55043PhysicalDeviceDescriptorIndexingProperties( VkPhysicalDeviceDescriptorIndexingProperties const & r… in PhysicalDeviceDescriptorIndexingProperties() function
55053 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const *… in operator =()
55057 … explicit operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties const&()
55062 explicit operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties&()
55097 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp51612 struct PhysicalDeviceDescriptorIndexingProperties struct
51614 using NativeType = VkPhysicalDeviceDescriptorIndexingProperties;
51616 static const bool allowDuplicate = false;
51617 …CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDescriptorIndexingProperties;
51621PhysicalDeviceDescriptorIndexingProperties(uint32_t maxUpdateAfterBindDescriptorsInAllPools_ = {},… in PhysicalDeviceDescriptorIndexingProperties() argument
51627PhysicalDeviceDescriptorIndexingProperties( VkPhysicalDeviceDescriptorIndexingProperties const & r… in PhysicalDeviceDescriptorIndexingProperties() function
51637 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const *… in operator =()
51642 operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties const&()
51647 operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties&()
51658 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp57466 struct PhysicalDeviceDescriptorIndexingProperties struct
57468 using NativeType = VkPhysicalDeviceDescriptorIndexingProperties;
57470 static const bool allowDuplicate = false;
57471 …ONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDescriptorIndexingProperties;
57474 …CONSTEXPR PhysicalDeviceDescriptorIndexingProperties( uint32_t maxUpdateAfterB… in PhysicalDeviceDescriptorIndexingProperties() function
57527PhysicalDeviceDescriptorIndexingProperties( VkPhysicalDeviceDescriptorIndexingProperties const & r… in PhysicalDeviceDescriptorIndexingProperties() function
57537 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const *… in operator =()
57541 operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties const&()
57546 operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties&()
57581 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs26314 pub struct PhysicalDeviceDescriptorIndexingProperties { struct
26315 pub s_type: StructureType,
26316 pub p_next: *mut c_void,
26317 pub max_update_after_bind_descriptors_in_all_pools: u32,
26341 impl ::std::default::Default for PhysicalDeviceDescriptorIndexingProperties { argument
26372 impl PhysicalDeviceDescriptorIndexingProperties { impl
26389 unsafe impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceDescriptorIndexingProperties {} implementation
26603 pub fn build(self) -> PhysicalDeviceDescriptorIndexingProperties { in build()