Home
last modified time | relevance | path

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

/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp23972 struct DeviceGroupSubmitInfo struct
23974 using NativeType = VkDeviceGroupSubmitInfo;
23976 static const bool allowDuplicate = false;
23977 … VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
23980 VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo(uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() argument
23999 DeviceGroupSubmitInfo(VkDeviceGroupSubmitInfo const &rhs) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() function
24005DeviceGroupSubmitInfo(VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const &waitSem… in DeviceGroupSubmitInfo() function
24025 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>(&rhs); in operator =()
24030 VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo &setPNext(const void *pNext_) VULKAN_HPP_NOEXCEPT in setPNext()
24036 …R_14 DeviceGroupSubmitInfo &setWaitSemaphoreCount(uint32_t waitSemaphoreCount_) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp23905 struct DeviceGroupSubmitInfo struct
23907 using NativeType = VkDeviceGroupSubmitInfo;
23909 static const bool allowDuplicate = false;
23910 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
23913 … VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() argument
23932 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() function
23938DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
23958 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
23963 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
23969 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp24803 struct DeviceGroupSubmitInfo struct
24805 using NativeType = VkDeviceGroupSubmitInfo;
24807 static const bool allowDuplicate = false;
24808 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
24812 DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() function
24828 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() function
24833 DeviceGroupSubmitInfo( in DeviceGroupSubmitInfo() function
24851 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
24856 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
24863 setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs17989 pub struct DeviceGroupSubmitInfo { struct
17999 impl ::std::default::Default for DeviceGroupSubmitInfo { argument
18013 impl DeviceGroupSubmitInfo { implementation
18027 unsafe impl ExtendsSubmitInfo for DeviceGroupSubmitInfo {} implementation
18064 pub fn build(self) -> DeviceGroupSubmitInfo { in build()