Home
last modified time | relevance | path

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

/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp48286 struct PhysicalDeviceDescriptorIndexingProperties struct
48288 using NativeType = VkPhysicalDeviceDescriptorIndexingProperties;
48290 static const bool allowDuplicate = false;
48291 …CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDescriptorIndexingProperties;
48294 …VULKAN_HPP_CONSTEXPR PhysicalDeviceDescriptorIndexingProperties(uint32_t maxUpdateAfterBindDescrip… in PhysicalDeviceDescriptorIndexingProperties() argument
48347PhysicalDeviceDescriptorIndexingProperties(VkPhysicalDeviceDescriptorIndexingProperties const &rhs… in PhysicalDeviceDescriptorIndexingProperties() function
48357 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const *… in operator =()
48361 explicit operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties const&()
48366 explicit operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties&()
48401 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp48192 struct PhysicalDeviceDescriptorIndexingProperties struct
48194 using NativeType = VkPhysicalDeviceDescriptorIndexingProperties;
48196 static const bool allowDuplicate = false;
48197 …ONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDescriptorIndexingProperties;
48200 …CONSTEXPR PhysicalDeviceDescriptorIndexingProperties( uint32_t maxUpdateAfterB… in PhysicalDeviceDescriptorIndexingProperties() function
48253PhysicalDeviceDescriptorIndexingProperties( VkPhysicalDeviceDescriptorIndexingProperties const & r… in PhysicalDeviceDescriptorIndexingProperties() function
48263 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const *… in operator =()
48267 … explicit operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties const&()
48272 explicit operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties&()
48307 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp49976 struct PhysicalDeviceDescriptorIndexingProperties struct
49978 using NativeType = VkPhysicalDeviceDescriptorIndexingProperties;
49980 static const bool allowDuplicate = false;
49981 static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType =
49985 VULKAN_HPP_CONSTEXPR PhysicalDeviceDescriptorIndexingProperties( in PhysicalDeviceDescriptorIndexingProperties() function
50037PhysicalDeviceDescriptorIndexingProperties( VkPhysicalDeviceDescriptorIndexingProperties const & r… in PhysicalDeviceDescriptorIndexingProperties() function
50050 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const *… in operator =()
50054 … explicit operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties const&()
50059 explicit operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT in operator VkPhysicalDeviceDescriptorIndexingProperties&()
50094 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()