Home
last modified time | relevance | path

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

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp26729 struct DeviceGroupRenderPassBeginInfo struct
26731 using NativeType = VkDeviceGroupRenderPassBeginInfo;
26733 static const bool allowDuplicate = false;
26734 …P_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupRenderPassBeginInfo;
26737 …VULKAN_HPP_CONSTEXPR DeviceGroupRenderPassBeginInfo( uint32_t deviceMa… in DeviceGroupRenderPassBeginInfo() function
26750DeviceGroupRenderPassBeginInfo( VkDeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupRenderPassBeginInfo() function
26756DeviceGroupRenderPassBeginInfo( uint32_t … in DeviceGroupRenderPassBeginInfo() function
26772 … *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupRenderPassBeginInfo const *>( &rhs ); in operator =()
26777 …P_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
26783 …TEXPR_14 DeviceGroupRenderPassBeginInfo & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT in setDeviceMask()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp24509 struct DeviceGroupRenderPassBeginInfo struct
24511 using NativeType = VkDeviceGroupRenderPassBeginInfo;
24513 static const bool allowDuplicate = false;
24514 …PP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupRenderPassBeginInfo;
24518 VULKAN_HPP_CONSTEXPR DeviceGroupRenderPassBeginInfo(uint32_t deviceMask_ = {}, uint32_t deviceRende… in DeviceGroupRenderPassBeginInfo() function
24524DeviceGroupRenderPassBeginInfo( VkDeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupRenderPassBeginInfo() function
24529DeviceGroupRenderPassBeginInfo( uint32_t deviceMask_, VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporarie… in DeviceGroupRenderPassBeginInfo() function
24540 … *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupRenderPassBeginInfo const *>( &rhs ); in operator =()
24545 …P_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
24551 …TEXPR_14 DeviceGroupRenderPassBeginInfo & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT in setDeviceMask()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp27598 struct DeviceGroupRenderPassBeginInfo struct
27600 using NativeType = VkDeviceGroupRenderPassBeginInfo;
27602 static const bool allowDuplicate = false;
27603 …P_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupRenderPassBeginInfo;
27606 …VULKAN_HPP_CONSTEXPR DeviceGroupRenderPassBeginInfo( uint32_t deviceMa… in DeviceGroupRenderPassBeginInfo() function
27619DeviceGroupRenderPassBeginInfo( VkDeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupRenderPassBeginInfo() function
27625DeviceGroupRenderPassBeginInfo( uint32_t … in DeviceGroupRenderPassBeginInfo() function
27641 … *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupRenderPassBeginInfo const *>( &rhs ); in operator =()
27646 …P_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
27652 …TEXPR_14 DeviceGroupRenderPassBeginInfo & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT in setDeviceMask()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs17870 pub struct DeviceGroupRenderPassBeginInfo { struct
17877 impl ::std::default::Default for DeviceGroupRenderPassBeginInfo { implementation
17888 impl DeviceGroupRenderPassBeginInfo { impl
17902 unsafe impl ExtendsRenderPassBeginInfo for DeviceGroupRenderPassBeginInfo {} implementation
17927 pub fn build(self) -> DeviceGroupRenderPassBeginInfo { in build()